16 lines
368 B
TypeScript
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();
|
|
}));
|
|
});
|