change-password.component.spec.ts 616 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { ChangePasswordComponent } from './change-password.component';
  3. describe('ChangePasswordComponent', () => {
  4. let component: ChangePasswordComponent;
  5. let fixture: ComponentFixture<ChangePasswordComponent>;
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [ChangePasswordComponent]
  9. });
  10. fixture = TestBed.createComponent(ChangePasswordComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });