yt-dlp-typescript-wrapper
Version:
TypeScript OOP wrapper for youtube-dl-exec with advanced YouTube Shorts support
14 lines • 403 B
JavaScript
// Setup file for Jest tests
// Увеличиваем timeout для тестов, которые могут быть медленными
jest.setTimeout(30000);
// Mock console methods to reduce noise in tests
global.console = {
...console,
log: jest.fn(),
debug: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn()
};
//# sourceMappingURL=setup.js.map
;