Skip to content

Commit

Permalink
Use new method for settings in terminal split cwd smoke test
Browse files Browse the repository at this point in the history
I doubt this will fix the flake, but it's the right way to do things now.

Part of microsoft#152451
  • Loading branch information
Tyriar committed Jun 17, 2022
1 parent 252c655 commit 8e29aa4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/smoke/src/areas/terminal/terminal-splitCwd.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down

0 comments on commit 8e29aa4

Please sign in to comment.