secure cookie error crash (#2685)

- fixes #1264 
- fixes #1321 
- fixes #1799  
- fixes #2689
- fixes #2688
- fixes #2687 	
- fixes #2686
This commit is contained in:
Brian Mann
2018-11-01 12:34:37 -04:00
committed by GitHub
parent b6519258d2
commit 2333d04a54
245 changed files with 5045 additions and 2955 deletions
+4 -2
View File
@@ -88,6 +88,7 @@ module.exports = {
options.env = _.extend({}, options.env, overrides)
const child = cp.spawn(executable, args, options)
child.on('close', resolve)
child.on('error', reject)
@@ -137,8 +138,9 @@ module.exports = {
return xvfb.start()
.then(userFriendlySpawn)
.finally(xvfb.stop)
} else {
return userFriendlySpawn()
}
return userFriendlySpawn()
},
}