openvidu/openvidu-testapp/src/app/components/test-scenarios/test-scenarios.component.sp...

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();
});
});