mirror of https://github.com/OpenVidu/openvidu.git
17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { CaptionService } from './caption.service';
|
|
|
|
describe('CaptionService', () => {
|
|
let service: CaptionService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(CaptionService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|