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