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