From e2f930af338fb04ed710d90917e3cbfa2eeca9f0 Mon Sep 17 00:00:00 2001 From: Sheng Chen Date: Fri, 6 Nov 2020 15:46:59 +0800 Subject: [PATCH] fix: Always show the source location in the first column (#1094) --- src/commands/testReportCommands.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/testReportCommands.ts b/src/commands/testReportCommands.ts index 840de595..d973c65a 100644 --- a/src/commands/testReportCommands.ts +++ b/src/commands/testReportCommands.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. -import { commands, Position, Range, Uri, window } from 'vscode'; +import { commands, Position, Range, Uri, ViewColumn, window } from 'vscode'; import { resolveStackTraceLocation } from '../utils/commandUtils'; export async function openStackTrace(trace: string, fullName: string): Promise { @@ -21,6 +21,7 @@ export async function openStackTrace(trace: string, fullName: string): Promise]+)\(.*\)/.exec(trace);