initial commit

This commit is contained in:
2023-10-15 20:02:52 +02:00
commit bd7452d198
47 changed files with 12202 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { VideosService } from './videos.service';
describe('VideosService', () => {
let service: VideosService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [VideosService],
}).compile();
service = module.get<VideosService>(VideosService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});