Files
doneit-web/src/app/modals/document-set-up-meeting/document-set-up-meeting.page.spec.ts
T
2021-07-29 10:13:39 +01:00

25 lines
762 B
TypeScript

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