From baca1f4634de046ea09ad993e3cd2fa356d53ffd Mon Sep 17 00:00:00 2001 From: Bryce <6920030+brycefranzen@users.noreply.github.com> Date: Wed, 26 Feb 2025 17:27:20 -0700 Subject: [PATCH] Fix VSCode Extension to Support Next.js Route Group File Paths on CodeLens Actions (#17724) --- packages/bun-vscode/src/features/tests/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bun-vscode/src/features/tests/index.ts b/packages/bun-vscode/src/features/tests/index.ts index e286e131d2..8b126559d0 100644 --- a/packages/bun-vscode/src/features/tests/index.ts +++ b/packages/bun-vscode/src/features/tests/index.ts @@ -167,7 +167,7 @@ export function registerTestRunner(context: vscode.ExtensionContext) { let command = customScript; if (filePath.length !== 0) { - command += ` ${filePath}`; + command += ` "${filePath}"`; } if (testName && testName.length) {