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