openvidu/openvidu-testapp/src/app/components/test-sessions/test-sessions.component.spe...

26 lines
671 B
TypeScript
Raw Normal View History

2017-09-26 18:13:00 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TestSessionsComponent } from './test-sessions.component';
2017-09-26 18:13:00 +02:00
describe('TestSessionsComponent', () => {
let component: TestSessionsComponent;
let fixture: ComponentFixture<TestSessionsComponent>;
2017-09-26 18:13:00 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TestSessionsComponent ]
2017-09-26 18:13:00 +02:00
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TestSessionsComponent);
2017-09-26 18:13:00 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});