for automatic review

This commit is contained in:
vorotamoroz
2026-06-17 06:10:30 +01:00
parent 7895336189
commit 4a5283543d
11 changed files with 406 additions and 11 deletions
+6 -1
View File
@@ -100,7 +100,12 @@ for (const sourceFile of project.getSourceFiles()) {
}
// Exclude unit and integration test files
if (posixFilePath.endsWith(".spec.ts") || posixFilePath.endsWith(".test.ts") || posixFilePath.includes("/_test/")) {
if (
posixFilePath.endsWith(".spec.ts") ||
posixFilePath.endsWith(".test.ts") ||
posixFilePath.includes("/_test/") ||
posixFilePath.includes("/testdeno/")
) {
continue;
}