UNPKG

cordova-plugin-background-upload-improved

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