Validate /etc/shells and findExecutable in unix tests

This commit is contained in:
Daniel Imms
2021-04-02 05:49:53 -07:00
parent 8c315552d1
commit 75b9018255
4 changed files with 131 additions and 52 deletions

View File

@@ -139,7 +139,7 @@ export class ExtHostTerminalService extends BaseExtHostTerminalService {
public async $getAvailableProfiles(configuredProfilesOnly: boolean): Promise<ITerminalProfile[]> {
const config = await (await this._extHostConfiguration.getConfigProvider()).getConfiguration().get('terminal.integrated');
return detectAvailableProfiles(configuredProfilesOnly, this._logService, config as ITerminalConfiguration, await this._variableResolverPromise, this._lastActiveWorkspace);
return detectAvailableProfiles(configuredProfilesOnly, undefined, this._logService, config as ITerminalConfiguration, await this._variableResolverPromise, this._lastActiveWorkspace);
}
public async $getDefaultShellAndArgs(useAutomationShell: boolean): Promise<IShellAndArgsDto> {