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