2024-07-02 19:19:05 +02:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
2017-09-28 19:13:29 +02:00
|
|
|
|
|
|
|
|
import { OpenviduInstanceComponent } from './openvidu-instance.component';
|
|
|
|
|
|
|
|
|
|
describe('OpenviduInstanceComponent', () => {
|
|
|
|
|
let component: OpenviduInstanceComponent;
|
|
|
|
|
let fixture: ComponentFixture<OpenviduInstanceComponent>;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2024-07-02 19:19:05 +02:00
|
|
|
TestBed.configureTestingModule({
|
|
|
|
|
declarations: [OpenviduInstanceComponent]
|
|
|
|
|
});
|
2017-09-28 19:13:29 +02:00
|
|
|
fixture = TestBed.createComponent(OpenviduInstanceComponent);
|
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|