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