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