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