mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-03 10:31:28 +03:00
13 lines
369 B
TypeScript
13 lines
369 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { YoutubeSearchService } from './youtube-search.service';
|
|
|
|
describe('YoutubeSearchService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: YoutubeSearchService = TestBed.get(YoutubeSearchService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|