UNPKG

cordova-plugin-background-upload-improved

Version:
26 lines (20 loc) 775 B
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { IonicModule } from '@ionic/angular'; import { ExploreContainerComponentModule } from '../explore-container/explore-container.module'; import { Tab3Page } from './tab3.page'; describe('Tab3Page', () => { let component: Tab3Page; let fixture: ComponentFixture<Tab3Page>; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [Tab3Page], imports: [IonicModule.forRoot(), ExploreContainerComponentModule] }).compileComponents(); fixture = TestBed.createComponent(Tab3Page); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });