Skip to content

Commit

Permalink
is it because of experiment value
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Oct 29, 2024
1 parent 1bbd0bc commit 3aa86bf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/test/smoke/smartSend.smoke.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ if (process.platform !== 'win32') {
suiteTeardown(closeActiveWindows);
teardown(closeActiveWindows);

test('Smart Send', async (done) => {
test('Smart Send', async () => {
const configuration = vscode.workspace.getConfiguration('python');
await configuration.update('REPL.sendToNativeREPL', false, vscode.ConfigurationTarget.Global);

const file = path.join(
EXTENSION_ROOT_DIR_FOR_TESTS,
'src',
Expand Down Expand Up @@ -69,7 +72,7 @@ if (process.platform !== 'win32') {
return new Promise<void>((resolve) => {
setTimeout(() => {
resolve();
}, 10000);
}, 30000);
});
}

Expand All @@ -81,7 +84,6 @@ if (process.platform !== 'win32') {
} else {
assert.fail(`"${outputFile}" file still exists`);
}
done();
});
});
}

0 comments on commit 3aa86bf

Please sign in to comment.