Skip to content

Commit a5fe81c

Browse files
authored
Merge branch 'main' into familiar-moth
2 parents 4d4f57d + 4b5dc0d commit a5fe81c

File tree

3 files changed

+34
-28
lines changed

3 files changed

+34
-28
lines changed

package-lock.json

Lines changed: 24 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)