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