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