nodejs: fix flaky test (#358227)

authored by Emily and committed by GitHub e1036e44 f38a03f4

+16
+1
pkgs/development/web/nodejs/nodejs.nix
··· 299 "FLAKY_TESTS=skip" 300 # Skip some tests that are not passing in this context 301 "CI_SKIP_TESTS=${lib.concatStringsSep "," ([ 302 "test-child-process-exec-env" 303 "test-child-process-uid-gid" 304 "test-fs-write-stream-eagain"
··· 299 "FLAKY_TESTS=skip" 300 # Skip some tests that are not passing in this context 301 "CI_SKIP_TESTS=${lib.concatStringsSep "," ([ 302 + # Tests don't work in sandbox. 303 "test-child-process-exec-env" 304 "test-child-process-uid-gid" 305 "test-fs-write-stream-eagain"
+5
pkgs/development/web/nodejs/v20.nix
··· 44 stripLen = 1; 45 hash = "sha256-6y3aEqxNC4iTQEv1oewodJrhOHxjp5xZMq1P1QL94Rg="; 46 }) 47 ] ++ gypPatches; 48 }
··· 44 stripLen = 1; 45 hash = "sha256-6y3aEqxNC4iTQEv1oewodJrhOHxjp5xZMq1P1QL94Rg="; 46 }) 47 + # fixes test failure, remove when included in release 48 + (fetchpatch2 { 49 + url = "https://github.com/nodejs/node/commit/b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7.patch?full_index=1"; 50 + hash = "sha256-KoKsQBFKUji0GeEPTR8ixBflCiHBhPqd2cPVPuKyua8="; 51 + }) 52 ] ++ gypPatches; 53 }
+5
pkgs/development/web/nodejs/v22.nix
··· 24 url = "https://github.com/nodejs/node/commit/32f7d5ad1cf79e7e731e1bb7ac967f4f2a3194cf.patch?full_index=1"; 25 hash = "sha256-dyUr3caGfetrXgfAl+CLE1LKKetDZCpPwMg4EM98rqI="; 26 }) 27 ]; 28 }
··· 24 url = "https://github.com/nodejs/node/commit/32f7d5ad1cf79e7e731e1bb7ac967f4f2a3194cf.patch?full_index=1"; 25 hash = "sha256-dyUr3caGfetrXgfAl+CLE1LKKetDZCpPwMg4EM98rqI="; 26 }) 27 + # fixes test failure, remove when included in release 28 + (fetchpatch2 { 29 + url = "https://github.com/nodejs/node/commit/b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7.patch?full_index=1"; 30 + hash = "sha256-KoKsQBFKUji0GeEPTR8ixBflCiHBhPqd2cPVPuKyua8="; 31 + }) 32 ]; 33 }
+5
pkgs/development/web/nodejs/v23.nix
··· 35 url = "https://github.com/nodejs/node/commit/f270462c09ddfd770291a7c8a2cd204b2c63d730.patch?full_index=1"; 36 hash = "sha256-Err0i5g7WtXcnhykKgrS3ocX7/3oV9UrT0SNeRtMZNU="; 37 }) 38 ]; 39 }
··· 35 url = "https://github.com/nodejs/node/commit/f270462c09ddfd770291a7c8a2cd204b2c63d730.patch?full_index=1"; 36 hash = "sha256-Err0i5g7WtXcnhykKgrS3ocX7/3oV9UrT0SNeRtMZNU="; 37 }) 38 + # fixes test failure, remove when included in release 39 + (fetchpatch2 { 40 + url = "https://github.com/nodejs/node/commit/b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7.patch?full_index=1"; 41 + hash = "sha256-KoKsQBFKUji0GeEPTR8ixBflCiHBhPqd2cPVPuKyua8="; 42 + }) 43 ]; 44 }