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; 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(); }); });