2020-08-25 14:08:13 +01:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-07-08 11:07:40 +01:00
|
|
|
import { AttendeesPageModal } from './attendees.page';
|
2020-08-25 14:08:13 +01:00
|
|
|
|
|
|
|
|
describe('AttendeesPage', () => {
|
2021-07-08 11:07:40 +01:00
|
|
|
let component: AttendeesPageModal;
|
|
|
|
|
let fixture: ComponentFixture<AttendeesPageModal>;
|
2020-08-25 14:08:13 +01:00
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-07-08 11:07:40 +01:00
|
|
|
declarations: [ AttendeesPageModal ],
|
2020-08-25 14:08:13 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-07-08 11:07:40 +01:00
|
|
|
fixture = TestBed.createComponent(AttendeesPageModal);
|
2020-08-25 14:08:13 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|