Files
perfdb/pdb-js/src/app/dashboard-page/dashboard-page.component.spec.ts
2023-02-26 08:18:53 +01:00

24 lines
649 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DashboardPageComponent } from './dashboard-page.component';
describe('DashboardPageComponent', () => {
let component: DashboardPageComponent;
let fixture: ComponentFixture<DashboardPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ DashboardPageComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(DashboardPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});