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