From f0245bf82c891074ec3b8288ba2fa1919ef290f6 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 17 Jun 2026 21:14:54 -0400 Subject: [PATCH] fix: normalize Windows drive letter matching test failure stacks --- packages/extension/src/runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/extension/src/runner.ts b/packages/extension/src/runner.ts index 6743c154..93ee93ce 100644 --- a/packages/extension/src/runner.ts +++ b/packages/extension/src/runner.ts @@ -552,7 +552,7 @@ function parseLocationFromStacks( ): DebuggerLocation | undefined { if (stacks.length === 0) return undefined - const targetFilepath = testItem.uri!.fsPath + const targetFilepath = normalizeDriveLetter(testItem.uri!.fsPath) for (const stack of stacks) { const { sourceFilepath, line, column } = getSourceFilepathAndLocationFromStack(stack) const sourceNormalizedPath = sourceFilepath && normalizeDriveLetter(sourceFilepath)