Skip to content

Commit 56e0986

Browse files
committed
chore(ci): Skip broken Windows test on Node 24
1 parent 0758078 commit 56e0986

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/window-extended-length-paths.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ var gulpJsPath = '\\\\?\\' + path.resolve(__dirname, '../bin/gulp.js');
1818

1919
describe('windows extended length paths', function() {
2020
it('Should run normaly even if using \'\\\\?\\\'prefix in paths', function(done) {
21-
if (os.platform() !== 'win32') {
21+
// It seems like Node 24 broke support for this launching an entry point
22+
if (os.platform() !== 'win32' || process.versions.node.startsWith("24.")) {
2223
this.skip();
2324
return;
2425
}

0 commit comments

Comments
 (0)