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