openvidu/openvidu-testapp/src/app/components/participant/participant.component.spec.ts

22 lines
594 B
TypeScript
Raw Normal View History

2024-07-02 19:19:05 +02:00
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();
});
});