import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { TestChatPanelComponent } from './test-chat-panel.component'; describe('TestChatPanelComponent', () => { let component: TestChatPanelComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [TestChatPanelComponent], }).compileComponents(); fixture = TestBed.createComponent(TestChatPanelComponent); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });