Use bash for shell

This may work around a problem where kill() does not work correctly in a travis context (https://github.com/travis-ci/travis-ci/issues/704)
This commit is contained in:
Scott Carver
2018-11-09 17:51:21 -08:00
parent d0259756a5
commit 9b69feff2c

View File

@@ -13,7 +13,8 @@ describe('server process', function() {
console.log("launching server...")
server_proc = child_process.spawn('yarn', ['dev'], {
cwd: '.'
cwd: '.',
shell: '/bin/bash'
});
server_proc.on('exit', function(code, signal) {