This commit is contained in:
Peter Maquiran
2021-08-10 13:22:33 +01:00
parent a6218e39c7
commit 05e3e1a95c
16 changed files with 376 additions and 106 deletions
@@ -0,0 +1,24 @@
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();
});
});