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