From 1d37bf54203caf6fd43bec72c57ca3ee219a015e Mon Sep 17 00:00:00 2001 From: chan Date: Tue, 24 Mar 2026 16:40:28 +0900 Subject: [PATCH] =?UTF-8?q?test=20code=EC=A0=9C=EC=99=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/i18n-scanner/report.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/i18n-scanner/report.js b/tools/i18n-scanner/report.js index ed9b9099..ed37ab2f 100644 --- a/tools/i18n-scanner/report.js +++ b/tools/i18n-scanner/report.js @@ -113,6 +113,10 @@ function walkDir(dirPath, files) { continue; } + if (entry.name.includes('.test.') || entry.name.includes('.spec.')) { + continue; + } + files.push(path.join(dirPath, entry.name)); } }