ucap-lg-mockup/src/app/pages/chat/component/chat-item.component.spec.ts
Park Byung Eun b7111951df init 0428
2020-04-28 21:09:35 +09:00

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();
});
});