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