There was an error while loading. Please reload this page.
1 parent e2f930a commit b94d319Copy full SHA for b94d319
1 file changed
src/testReportProvider.ts
@@ -65,7 +65,7 @@ class TestReportProvider implements Disposable {
65
if (message.uri && message.range) {
66
return openTextDocument(Uri.parse(message.uri), JSON.parse(message.range) as Range);
67
} else if (message.fullName) {
68
- const items: ILocation[] = await searchTestLocation(message.fullName);
+ const items: ILocation[] = await searchTestLocation(message.fullName.slice(message.fullName.indexOf('@') + 1));
69
if (items.length === 1) {
70
return openTextDocument(Uri.parse(items[0].uri), items[0].range);
71
} else if (items.length > 1) {
0 commit comments