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