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