mirror of https://github.com/OpenVidu/openvidu.git
26 lines
690 B
TypeScript
26 lines
690 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ParticipantItemComponent } from './participant-item.component';
|
|
|
|
describe('ParticipantItemComponent', () => {
|
|
let component: ParticipantItemComponent;
|
|
let fixture: ComponentFixture<ParticipantItemComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ ParticipantItemComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ParticipantItemComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|