From d7f5ec0f62a250ad8d13b9d00a8d6fe5d71be010 Mon Sep 17 00:00:00 2001 From: kevinwatt Date: Tue, 16 Dec 2025 04:36:55 +0800 Subject: [PATCH] refactor: move integration tests to tests/ directory - Create tests/ directory for integration/manual test scripts - Move test-mcp.mjs, test-real-video.mjs, test-bilibili.mjs to tests/ - Keep unit tests in src/__tests__/ (Jest convention) - Update CHANGELOG.md --- CHANGELOG.md | 1 + test-bilibili.mjs => tests/test-bilibili.mjs | 0 test-mcp.mjs => tests/test-mcp.mjs | 0 test-real-video.mjs => tests/test-real-video.mjs | 0 4 files changed, 1 insertion(+) rename test-bilibili.mjs => tests/test-bilibili.mjs (100%) rename test-mcp.mjs => tests/test-mcp.mjs (100%) rename test-real-video.mjs => tests/test-real-video.mjs (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index e795354..7dad127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Add Claude Code settings (.claude/, CLAUDE.md) to .gitignore - Add development guideline to always update CHANGELOG.md +- Move integration test scripts to `tests/` directory for cleaner root --- diff --git a/test-bilibili.mjs b/tests/test-bilibili.mjs similarity index 100% rename from test-bilibili.mjs rename to tests/test-bilibili.mjs diff --git a/test-mcp.mjs b/tests/test-mcp.mjs similarity index 100% rename from test-mcp.mjs rename to tests/test-mcp.mjs diff --git a/test-real-video.mjs b/tests/test-real-video.mjs similarity index 100% rename from test-real-video.mjs rename to tests/test-real-video.mjs