24 lines
642 B
TypeScript
24 lines
642 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { UserDashboardComponent } from './user-dashboard.component';
|
|
|
|
describe('UserDashboardComponent', () => {
|
|
let component: UserDashboardComponent;
|
|
let fixture: ComponentFixture<UserDashboardComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [UserDashboardComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(UserDashboardComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|