Skip to content

Commit 399a766

Browse files
committed
Skip flaky tests in smoke suite for terminal execution and smart send
1 parent 8989323 commit 399a766

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ 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 is resolved
32+
test.skip('Exec', async () => {
3233
const file = path.join(
3334
EXTENSION_ROOT_DIR_FOR_TESTS,
3435
'src',

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ 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 is resolved
23+
test.skip('Smart Send', async () => {
2324
const file = path.join(
2425
EXTENSION_ROOT_DIR_FOR_TESTS,
2526
'src',

0 commit comments

Comments
 (0)