Merge pull request #1016 from Bilb/test-use-pkill-rather-killall

[test] use pkill instead of killall for running test windows
pull/1018/head
Audric Ackermann 5 years ago committed by GitHub
commit 79fe5ddff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -98,7 +98,7 @@ module.exports = {
const killStr =
process.platform === 'win32'
? 'taskkill /im electron.exe /t /f'
: 'killall -9 electron';
: 'pkill -f "node_modules/.bin/electron"';
return new Promise(resolve => {
exec(killStr, (err, stdout, stderr) => {
if (err) {

Loading…
Cancel
Save