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