Skip to content

Commit 4b5dc0d

Browse files
authored
Skip flaky tests in smoke suite for terminal execution and smart send (#25604)
1 parent 782a2f1 commit 4b5dc0d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/test/smoke/runInTerminal.smoke.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ suite('Smoke Test: Run Python File In Terminal', () => {
2828
suiteTeardown(closeActiveWindows);
2929
teardown(closeActiveWindows);
3030

31-
test('Exec', async () => {
31+
// TODO: Re-enable this test once the flakiness on Windows is resolved
32+
test('Exec', async function () {
33+
if (process.platform === 'win32') {
34+
return this.skip();
35+
}
3236
const file = path.join(
3337
EXTENSION_ROOT_DIR_FOR_TESTS,
3438
'src',

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
1919
suiteTeardown(closeActiveWindows);
2020
teardown(closeActiveWindows);
2121

22-
test('Smart Send', async () => {
22+
// TODO: Re-enable this test once the flakiness on Windows is resolved
23+
test('Smart Send', async function () {
24+
if (process.platform === 'win32') {
25+
return this.skip();
26+
}
2327
const file = path.join(
2428
EXTENSION_ROOT_DIR_FOR_TESTS,
2529
'src',

0 commit comments

Comments
 (0)