Files
doneit-web/src/app/shared/popover/event-details-documents-options/event-details-documents-options.page.spec.ts
T
Peter Maquiran 9ceb915fef viewer hot-fix
2021-10-08 19:29:21 +01:00

25 lines
818 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { EventDetailsDocumentsOptionsPage } from './event-details-documents-options.page';
describe('EventDetailsDocumentsOptionsPage', () => {
let component: EventDetailsDocumentsOptionsPage;
let fixture: ComponentFixture<EventDetailsDocumentsOptionsPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ EventDetailsDocumentsOptionsPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(EventDetailsDocumentsOptionsPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});