We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f6e4a3 commit 994cb4cCopy full SHA for 994cb4c
scripts/test_windows.ps1
@@ -64,10 +64,10 @@ npm ci -ignore-script node-pty
64
npm run lint
65
npm run format
66
npm run package
67
-$Process = Start-Process npm "run integration-test" -Wait -PassThru -NoNewWindow
68
-if ($Process.ExitCode -eq 0) {
+npm run integration-test
+if ($LASTEXITCODE -eq 0) {
69
Write-Host 'SUCCESS'
70
} else {
71
- Write-Host ('FAILED ({0})' -f $Process.ExitCode)
+ Write-Host ('FAILED ({0})' -f $LASTEXITCODE)
72
exit 1
73
}
0 commit comments