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