9f291308aa
tests.
27 lines
807 B
TypeScript
27 lines
807 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { UserDetailComponent } from './user-detail.component';
|
|
import { E2EImportsModule } from '../../../../../e2e-imports.module';
|
|
|
|
describe('UserDetailComponent', () => {
|
|
let component: UserDetailComponent;
|
|
let fixture: ComponentFixture<UserDetailComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [E2EImportsModule],
|
|
declarations: [UserDetailComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(UserDetailComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|