/* 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 { LanguagePage } from './language.page'; describe('LanguagePage', () => { let component: LanguagePage; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [LanguagePage], imports: [IonicModule.forRoot()] }).compileComponents(); fixture = TestBed.createComponent(LanguagePage); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });