add book meeting in desktop component

This commit is contained in:
tiago.kayaya
2021-08-18 16:40:58 +01:00
parent 25b0b2a418
commit 6196189bb9
16 changed files with 579 additions and 200 deletions
@@ -0,0 +1,24 @@
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();
});
});