Skip to content

Commit cb278bc

Browse files
committed
Skip a broken test
1 parent 1b96894 commit cb278bc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/e2e-tests/test/e2e.spec.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,6 +1059,13 @@ describe('e2e', function () {
10591059
});
10601060

10611061
it('reads and runs the vscode extension example playground', async function () {
1062+
if (
1063+
process.platform === 'win32' &&
1064+
process.versions.node.startsWith('22')
1065+
) {
1066+
// This test fails on Windows with node 22 likely due to https://github.com/nodejs/node/issues/51766
1067+
return this.skip();
1068+
}
10621069
createReadStream(
10631070
path.resolve(__dirname, 'fixtures', 'exampleplayground.js')
10641071
).pipe(shell.process.stdin);

0 commit comments

Comments
 (0)