Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/test/smoke/runInTerminal.smoke.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ suite('Smoke Test: Run Python File In Terminal', () => {
suiteTeardown(closeActiveWindows);
teardown(closeActiveWindows);

test('Exec', async () => {
// TODO: Re-enable this test once the flakiness on Windows is resolved
test('Exec', async function () {
if (process.platform === 'win32') {
return this.skip();
}
const file = path.join(
EXTENSION_ROOT_DIR_FOR_TESTS,
'src',
Expand Down
6 changes: 5 additions & 1 deletion src/test/smoke/smartSend.smoke.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
suiteTeardown(closeActiveWindows);
teardown(closeActiveWindows);

test('Smart Send', async () => {
// TODO: Re-enable this test once the flakiness on Windows is resolved
test('Smart Send', async function () {
if (process.platform === 'win32') {
return this.skip();
}
const file = path.join(
EXTENSION_ROOT_DIR_FOR_TESTS,
'src',
Expand Down