Files
doneit-web/src/app/shared/popover/searched-document-options/searched-document-options.page.spec.ts
T
Peter Maquiran 05e3e1a95c improve
2021-08-10 13:22:33 +01:00

25 lines
782 B
TypeScript

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