mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Fix flaky integration tests on mac
This commit is contained in:
@@ -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();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user