openvidu/openvidu-components-angular/projects/openvidu-angular/src/lib/services/rest/rest.service.spec.ts

17 lines
336 B
TypeScript
Raw Normal View History

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