Files
Go-To-bed/Client/src/app/components/searchHost/searchHost.page.spec.ts
2022-01-02 01:29:58 +01:00

26 lines
817 B
TypeScript

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<SearchHostPage>;
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();
});
});