From 9d14f6bc017ccc781d979f1e2b9e48121f67ce04 Mon Sep 17 00:00:00 2001 From: kevinwatt Date: Sun, 3 Aug 2025 00:47:53 +0800 Subject: [PATCH] remove unused test-utils.ts --- src/utils/test-utils.ts | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/utils/test-utils.ts diff --git a/src/utils/test-utils.ts b/src/utils/test-utils.ts deleted file mode 100644 index a485b99..0000000 --- a/src/utils/test-utils.ts +++ /dev/null @@ -1,23 +0,0 @@ -import type { Config } from '../config.js'; - -export const mockConfig: Config = { - file: { - maxFilenameLength: 100, - downloadsDir: '/mock/downloads', - tempDirPrefix: 'ytdlp-test-', - sanitize: { - replaceChar: '_', - truncateSuffix: '...', - illegalChars: /[<>:"/\\|?*\x00-\x1F]/g, - reservedNames: ['CON', 'PRN', 'AUX', 'NUL'] - } - }, - tools: { - required: ['yt-dlp'] - }, - download: { - defaultResolution: '720p', - defaultAudioFormat: 'm4a', - defaultSubtitleLanguage: 'en' - } -}; \ No newline at end of file