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