import { ComponentFixture, TestBed } from '@angular/core/testing'; import { Chat } from './chat'; describe('Chat', () => { let component: Chat; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [Chat], }).compileComponents(); fixture = TestBed.createComponent(Chat); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });