Use new method for settings in terminal split cwd smoke test

I doubt this will fix the flake, but it's the right way to do things now.

Part of #152451
This commit is contained in:
Daniel Imms 2022-06-17 08:43:31 -07:00
parent 252c65540d
commit 8e29aa44f7
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -15,8 +15,9 @@ export function setup() {
const app = this.app as Application;
terminal = app.workbench.terminal;
settingsEditor = app.workbench.settingsEditor;
await settingsEditor.addUserSetting('terminal.integrated.splitCwd', '"inherited"');
await setTerminalTestSettings(app);
await setTerminalTestSettings(app, [
['terminal.integrated.splitCwd', '"inherited"']
]);
});
after(async function () {