Fix flaky integration tests on mac

This commit is contained in:
Daniel Imms
2024-05-01 13:18:50 -07:00
parent 9133f99105
commit d95fae2e2d
2 changed files with 5 additions and 3 deletions

View File

@@ -39,7 +39,9 @@ import { assertNoRpc } from '../utils';
});
}
}));
const terminal = window.createTerminal();
const terminal = platform() === 'win32'
? window.createTerminal()
: window.createTerminal({ shellPath: '/bin/bash' });
terminal.show();
});
}