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 { NewEventPage } from './new-event.page';
|
2021-01-18 14:59:09 +01:00
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
describe('NewEventPage', () => {
|
|
|
|
|
let component: NewEventPage;
|
|
|
|
|
let fixture: ComponentFixture<NewEventPage>;
|
2021-01-18 14:59:09 +01:00
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-01-29 09:45:27 +01:00
|
|
|
declarations: [ NewEventPage ],
|
2021-01-18 14:59:09 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-01-29 09:45:27 +01:00
|
|
|
fixture = TestBed.createComponent(NewEventPage);
|
2021-01-18 14:59:09 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|