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