2021-07-08 11:07:40 +01:00
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
2021-04-05 15:10:28 +01:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-06-03 15:03:23 +01:00
|
|
|
import { EditEventPage } from './edit-event.page';
|
2021-04-05 15:10:28 +01:00
|
|
|
|
2021-06-03 15:03:23 +01:00
|
|
|
describe('EditEventPage', () => {
|
|
|
|
|
let component: EditEventPage;
|
|
|
|
|
let fixture: ComponentFixture<EditEventPage>;
|
2021-04-05 15:10:28 +01:00
|
|
|
|
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-06-03 15:03:23 +01:00
|
|
|
declarations: [ EditEventPage ],
|
2021-07-08 11:07:40 +01:00
|
|
|
imports: [
|
|
|
|
|
IonicModule.forRoot(),
|
|
|
|
|
HttpClientModule
|
|
|
|
|
]
|
2021-04-05 15:10:28 +01:00
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-06-03 15:03:23 +01:00
|
|
|
fixture = TestBed.createComponent(EditEventPage);
|
2021-04-05 15:10:28 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|