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