2021-03-24 15:10:46 +01:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
2021-06-15 15:28:03 +01:00
|
|
|
import { AttendeePage } from './attendee-modal.page';
|
2021-03-24 15:10:46 +01:00
|
|
|
|
2021-06-15 15:28:03 +01:00
|
|
|
describe('AttendeePage', () => {
|
|
|
|
|
let component: AttendeePage;
|
|
|
|
|
let fixture: ComponentFixture<AttendeePage>;
|
2021-03-24 15:10:46 +01:00
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2021-06-15 15:28:03 +01:00
|
|
|
declarations: [ AttendeePage ],
|
2021-03-24 15:10:46 +01:00
|
|
|
imports: [IonicModule.forRoot()]
|
|
|
|
|
}).compileComponents();
|
|
|
|
|
|
2021-06-15 15:28:03 +01:00
|
|
|
fixture = TestBed.createComponent(AttendeePage);
|
2021-03-24 15:10:46 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|