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