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