adding dashbord

This commit is contained in:
2023-02-26 08:18:53 +01:00
parent eb9904a30b
commit a2945d2d9b
44 changed files with 928 additions and 8 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AddPlotDialogComponent } from './add-plot-dialog.component';
describe('AddPlotDialogComponent', () => {
let component: AddPlotDialogComponent;
let fixture: ComponentFixture<AddPlotDialogComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ AddPlotDialogComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(AddPlotDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});