26 lines
694 B
TypeScript
26 lines
694 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ModifyPasswordComponent } from './modify-password-page.component';
|
||
|
|
||
|
describe('ModifyPasswordPageComponent', () => {
|
||
|
let component: ModifyPasswordComponent;
|
||
|
let fixture: ComponentFixture<ModifyPasswordComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ ModifyPasswordComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(ModifyPasswordComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|