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