2020-09-07 12:01:05 +01:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-02-24 09:14:58 +01:00
|
|
|
import { ViewEventPage } from './view-event.page';
|
2020-09-07 12:01:05 +01:00
|
|
|
|
2021-02-24 09:14:58 +01:00
|
|
|
describe('ViewEventPage', () => {
|
|
|
|
|
let component: ViewEventPage;
|
|
|
|
|
let fixture: ComponentFixture<ViewEventPage>;
|
2020-09-07 12:01:05 +01:00
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-02-24 09:14:58 +01:00
|
|
|
declarations: [ ViewEventPage ],
|
2020-09-07 12:01:05 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-02-24 09:14:58 +01:00
|
|
|
fixture = TestBed.createComponent(ViewEventPage);
|
2020-09-07 12:01:05 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|