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