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