2021-01-18 14:59:09 +01:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
import { EditEventPage } from './edit-event.page';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
describe('EditEventPage', () => {
|
|
|
|
|
let component: EditEventPage;
|
|
|
|
|
let fixture: ComponentFixture<EditEventPage>;
|
2021-01-18 14:59:09 +01:00
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-01-29 09:45:27 +01:00
|
|
|
declarations: [ EditEventPage ],
|
2021-01-18 14:59:09 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
fixture = TestBed.createComponent(EditEventPage);
|
2021-01-18 14:59:09 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|