Skip to content

Commit d12ae35

Browse files
committed
make sure shell integration is disabled on smart send smoke test
1 parent eaa78f2 commit d12ae35

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/smoke/smartSend.smoke.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
2424
await configuration.update('REPL.sendToNativeREPL', false, vscode.ConfigurationTarget.Global);
2525

2626
const configurationTerminal = vscode.workspace.getConfiguration('terminal');
27+
// set terminal.integrated.shellIntegration.enabled to false
28+
await configurationTerminal.update(
29+
'integrated.shellIntegration.enabled',
30+
false,
31+
vscode.ConfigurationTarget.Global,
32+
);
2733
configurationTerminal.update(
2834
'integrated.defaultProfile.windows',
2935
'PowerShell',

0 commit comments

Comments
 (0)