Skip to content

Commit b855d07

Browse files
Fix: Resolve problems with backslashes vs forward slashes in testId construction
1 parent 026b38f commit b855d07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ import {
7575
updateCoverageAndRebuildEnv,
7676
forceLowerCaseDriveLetter,
7777
decodeVar,
78+
normalizePath,
7879
} from "./utilities";
7980

8081
import {
@@ -2600,7 +2601,7 @@ async function populateRequirementsGateway(enviroPath: string) {
26002601

26012602
let existingEnvs: string[] = [];
26022603
function updateRequirementsAvailability(enviroPath: string) {
2603-
const nodeID = makeEnviroNodeID(enviroPath);
2604+
const nodeID = makeEnviroNodeID(normalizePath(enviroPath));
26042605

26052606
// the vcast: prefix to allow package.json nodes to control
26062607
// when the VectorCAST context menu should be shown

0 commit comments

Comments
 (0)