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