35 lines
975 B
TypeScript
35 lines
975 B
TypeScript
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
/*
|
|
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 { TabsPage } from './tabs.page';
|
|
|
|
describe('TabsPage', () => {
|
|
let component: TabsPage;
|
|
let fixture: ComponentFixture<TabsPage>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [TabsPage],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(TabsPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|