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