From f1a08316c279556a19ae77201c3d3052593afc14 Mon Sep 17 00:00:00 2001 From: Daniel La Rocque Date: Tue, 4 Nov 2025 14:47:05 -0500 Subject: [PATCH] test(ai): do not run browser tests when debugging node tests --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1f627304b61..8f132cbe5c6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,7 +17,7 @@ "src/index.node.ts", "--timeout", "5000", - "src/**/*.test.ts" + "'src/**/!(*-browser)*.test.ts" ], "env": { "TS_NODE_COMPILER_OPTIONS": "{\"module\":\"commonjs\"}"