karideo/front/src/app/video.service.spec.ts

16 lines
368 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { VideoService } from './video.service';
describe('VideoService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [VideoService]
});
});
it('should be created', inject([VideoService], (service: VideoService) => {
expect(service).toBeTruthy();
}));
});