From a669d57e4a89eb49a2bbcda73d7a87818a8c1eab Mon Sep 17 00:00:00 2001 From: chan Date: Tue, 24 Mar 2026 16:37:01 +0900 Subject: [PATCH] test code i18n x --- tools/i18n-scanner/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/i18n-scanner/index.js b/tools/i18n-scanner/index.js index 6822d999..3a06a846 100644 --- a/tools/i18n-scanner/index.js +++ b/tools/i18n-scanner/index.js @@ -110,6 +110,10 @@ function walkDir(dirPath, files) { continue; } + if (entry.name.includes('.test.') || entry.name.includes('.spec.')) { + continue; + } + files.push(path.join(dirPath, entry.name)); } }