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