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