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