Skip to content

Commit f752f56

Browse files
committed
Fixing smoke test start on Windows
1 parent 7636a7d commit f752f56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/smoke/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ process.env.VSCODE_KEYBINDINGS_PATH = keybindingsPath;
125125
let quality: Quality;
126126
if (process.env.VSCODE_DEV === '1') {
127127
quality = Quality.Dev;
128-
} else if ((testCodePath.indexOf('Code - Insiders') /* macOS/Windows */ || testCodePath.indexOf('code-insiders') /* Linux */) >= 0) {
128+
} else if ((electronPath.indexOf('Code - Insiders') /* macOS/Windows */ || electronPath.indexOf('code-insiders') /* Linux */) >= 0) {
129129
quality = Quality.Insiders;
130130
} else {
131131
quality = Quality.Stable;

0 commit comments

Comments
 (0)