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