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