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