@@ -11,8 +11,7 @@ parameters:
11
11
type : string
12
12
13
13
steps :
14
- # Additional "--" needed to workaround https://github.com/npm/cli/issues/7375
15
- - powershell : npm exec -- -- npm-run-all -lp "electron $(VSCODE_ARCH)" "playwright-install"
14
+ - powershell : npm exec -- npm-run-all -lp "electron $(VSCODE_ARCH)" "playwright-install"
16
15
env :
17
16
GITHUB_TOKEN : " $(github-distro-mixin-password)"
18
17
displayName : Download Electron and Playwright
@@ -22,14 +21,12 @@ steps:
22
21
- powershell : .\scripts\test.bat --build --tfs "Unit Tests"
23
22
displayName : 🧪 Run unit tests (Electron)
24
23
timeoutInMinutes : 15
25
- # Additional "--" needed to workaround https://github.com/npm/cli/issues/7375
26
- - powershell : npm run test-node -- -- --build
24
+ - powershell : npm run test-node -- --build
27
25
displayName : 🧪 Run unit tests (node.js)
28
26
timeoutInMinutes : 15
29
27
30
28
- ${{ if eq(parameters.VSCODE_RUN_BROWSER_TESTS, true) }} :
31
- # Additional "--" needed to workaround https://github.com/npm/cli/issues/7375
32
- - powershell : npm run test-browser-no-install -- -- --build --browser chromium --tfs "Browser Unit Tests"
29
+ - powershell : npm run test-browser-no-install -- --build --browser chromium --tfs "Browser Unit Tests"
33
30
displayName : 🧪 Run unit tests (Browser, Chromium)
34
31
timeoutInMinutes : 20
35
32
@@ -122,22 +119,19 @@ steps:
122
119
condition : succeededOrFailed()
123
120
124
121
- ${{ if eq(parameters.VSCODE_RUN_ELECTRON_TESTS, true) }} :
125
- # Additional "--" needed to workaround https://github.com/npm/cli/issues/7375
126
- - powershell : npm run smoketest-no-compile -- -- --tracing --build "$(agent.builddirectory)\test\VSCode-win32-$(VSCODE_ARCH)"
122
+ - powershell : npm run smoketest-no-compile -- --tracing --build "$(agent.builddirectory)\test\VSCode-win32-$(VSCODE_ARCH)"
127
123
displayName : 🧪 Run smoke tests (Electron)
128
124
timeoutInMinutes : 20
129
125
130
126
- ${{ if eq(parameters.VSCODE_RUN_BROWSER_TESTS, true) }} :
131
- # Additional "--" needed to workaround https://github.com/npm/cli/issues/7375
132
- - powershell : npm run smoketest-no-compile -- -- --web --tracing --headless
127
+ - powershell : npm run smoketest-no-compile -- --web --tracing --headless
133
128
env :
134
129
VSCODE_REMOTE_SERVER_PATH : $(agent.builddirectory)\test\vscode-server-win32-$(VSCODE_ARCH)-web
135
130
displayName : 🧪 Run smoke tests (Browser, Chromium)
136
131
timeoutInMinutes : 20
137
132
138
133
- ${{ if eq(parameters.VSCODE_RUN_REMOTE_TESTS, true) }} :
139
- # Additional "--" needed to workaround https://github.com/npm/cli/issues/7375
140
- - powershell : npm run smoketest-no-compile -- -- --tracing --remote --build "$(agent.builddirectory)\test\VSCode-win32-$(VSCODE_ARCH)"
134
+ - powershell : npm run smoketest-no-compile -- --tracing --remote --build "$(agent.builddirectory)\test\VSCode-win32-$(VSCODE_ARCH)"
141
135
env :
142
136
VSCODE_REMOTE_SERVER_PATH : $(agent.builddirectory)\test\vscode-server-win32-$(VSCODE_ARCH)
143
137
displayName : 🧪 Run smoke tests (Remote)
0 commit comments