import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { SignupComponent } from './signup.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(); }); });