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