Files
doneit-web/src/app/modals/chat-options-features/chat-options-features.page.spec.ts
T
2021-08-18 16:40:58 +01:00

25 lines
754 B
TypeScript

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