|
@@ -0,0 +1,17 @@
|
|
|
+import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
+import { ChatPage } from './chat.page';
|
|
|
+
|
|
|
+describe('ChatPage', () => {
|
|
|
+ let component: ChatPage;
|
|
|
+ let fixture: ComponentFixture<ChatPage>;
|
|
|
+
|
|
|
+ beforeEach(() => {
|
|
|
+ fixture = TestBed.createComponent(ChatPage);
|
|
|
+ component = fixture.componentInstance;
|
|
|
+ fixture.detectChanges();
|
|
|
+ });
|
|
|
+
|
|
|
+ it('should create', () => {
|
|
|
+ expect(component).toBeTruthy();
|
|
|
+ });
|
|
|
+});
|