Fix Windows unit tests (#165973)

This commit is contained in:
Joyce Er
2022-11-09 19:53:01 -08:00
committed by GitHub
parent ef75cfdc6c
commit 9d5741f01a
@@ -47,7 +47,7 @@ suite('Workbench - TerminalProfiles', () => {
const configurationService = new TestConfigurationService({ terminal: { integrated: config } });
const profiles = await detectAvailableProfiles(undefined, undefined, false, configurationService, process.env, fsProvider, undefined, undefined, undefined);
const expected = [
{ profileName: 'Git Bash', path: 'C:\\Program Files\\Git\\bin\\bash.exe', args: ['--login'], isDefault: true }
{ profileName: 'Git Bash', path: 'C:\\Program Files\\Git\\bin\\bash.exe', args: ['--login', '-i'], isDefault: true }
];
profilesEqual(profiles, expected);
});