/* Authors : initappz (Rahul Jograna) Website : https://initappz.com/ App Name : E-Learning App Template This App Template Source code is licensed as per the terms found in the Website https://initappz.com/license Copyright and Good Faith Purchasers © 2021-present initappz. */ import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { IonicModule } from '@ionic/angular'; import { SecurityPage } from './security.page'; describe('SecurityPage', () => { let component: SecurityPage; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [SecurityPage], imports: [IonicModule.forRoot()] }).compileComponents(); fixture = TestBed.createComponent(SecurityPage); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });