ucap-doc/documents/업무/6월/1째주/backup/etc/room-list-item-02.component.spec.ts
Park Byung Eun cc59886a40 sync
2020-06-05 18:45:18 +09:00

25 lines
692 B
TypeScript

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