ucap-doc/documents/업무/6월/1째주/backup/etc/room-list-item-02.component.spec.ts

25 lines
692 B
TypeScript
Raw Normal View History

2020-06-05 09:45:18 +00:00
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();
});
});