mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 04:48:36 +03:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user