LMS/E-Learning-Admin-frontend-main/src/app/forgotpassword/forgotpassword.component.spec.ts
2025-09-01 19:37:35 +05:30

26 lines
684 B
TypeScript

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