We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b96894 commit cb278bcCopy full SHA for cb278bc
packages/e2e-tests/test/e2e.spec.ts
@@ -1059,6 +1059,13 @@ describe('e2e', function () {
1059
});
1060
1061
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
+ }
1069
createReadStream(
1070
path.resolve(__dirname, 'fixtures', 'exampleplayground.js')
1071
).pipe(shell.process.stdin);
0 commit comments