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