From dfebe37bc3c1007cc2706e11f8903b0e0e185c8f Mon Sep 17 00:00:00 2001 From: Morgan Roderick Date: Mon, 7 Sep 2026 11:56:58 +0200 Subject: [PATCH] fix(tap): exclude nested node_modules from test file discovery --- .taprc | 1 + 1 file changed, 1 insertion(+) diff --git a/.taprc b/.taprc index 2673c1f..025d7df 100644 --- a/.taprc +++ b/.taprc @@ -9,6 +9,7 @@ files: exclude: - "node_modules/**" + - "**/node_modules/**" - "**/shared/*.js" - "tests/integration/shared/" - "tests/runtime/bun/bun-sql-integration.test.js"