25 lines
692 B
TypeScript
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();
|
|
});
|
|
});
|