Skip to content

Commit

Permalink
Merge #325844: nodejs: disable JS test suite on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jul 10, 2024
2 parents 81d8473 + d25d9b6 commit 0ca2f1e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/web/nodejs/nodejs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,15 @@ let
# Some dependencies required for tools/doc/node_modules (and therefore
# test-addons, jstest and others) target are not included in the tarball.
# Run test targets that do not require network access.
checkTarget = lib.concatStringsSep " " [
checkTarget = lib.concatStringsSep " " ([
"build-js-native-api-tests"
"build-node-api-tests"
"tooltest"
"cctest"
] ++ lib.optionals (!stdenv.isDarwin) [
# TODO: JS test suite is too flaky on Darwin; revisit at a later date.
"test-ci-js"
];
]);

checkFlags = [
# Do not create __pycache__ when running tests.
Expand Down

0 comments on commit 0ca2f1e

Please sign in to comment.