2021-04-28 11:06:55 +01:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-06-03 14:10:16 +01:00
|
|
|
import { ApproveEventPage } from './approve-event.page';
|
2021-04-28 11:06:55 +01:00
|
|
|
|
2021-06-03 14:10:16 +01:00
|
|
|
describe('ApproveEventPage', () => {
|
|
|
|
|
let component: ApproveEventPage;
|
|
|
|
|
let fixture: ComponentFixture<ApproveEventPage>;
|
2021-04-28 11:06:55 +01:00
|
|
|
|
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-06-03 14:10:16 +01:00
|
|
|
declarations: [ ApproveEventPage ],
|
2021-04-28 11:06:55 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-06-03 14:10:16 +01:00
|
|
|
fixture = TestBed.createComponent(ApproveEventPage);
|
2021-04-28 11:06:55 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|