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 { EditEventPage } from './edit-event.page';
|
2021-04-28 11:06:55 +01:00
|
|
|
|
2021-06-03 14:10:16 +01:00
|
|
|
describe('EditEventPage', () => {
|
|
|
|
|
let component: EditEventPage;
|
|
|
|
|
let fixture: ComponentFixture<EditEventPage>;
|
2021-04-28 11:06:55 +01:00
|
|
|
|
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-06-03 14:10:16 +01:00
|
|
|
declarations: [ EditEventPage ],
|
2021-04-28 11:06:55 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-06-03 14:10:16 +01:00
|
|
|
fixture = TestBed.createComponent(EditEventPage);
|
2021-04-28 11:06:55 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|