25 lines
753 B
TypeScript
25 lines
753 B
TypeScript
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<ExploreContainerComponent>;
|
|
|
|
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();
|
|
});
|
|
});
|