import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { IonicModule } from '@ionic/angular'; import { ChangePwdPage } from './change-pwd.page'; describe('ChangePwdPage', () => { let component: ChangePwdPage; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ChangePwdPage ], imports: [IonicModule.forRoot()] }).compileComponents(); fixture = TestBed.createComponent(ChangePwdPage); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });