diff --git a/shell.nix b/shell.nix index dabb03e88ff6fe..ae2f15c7c80e25 100644 --- a/shell.nix +++ b/shell.nix @@ -107,12 +107,7 @@ pkgs.mkShell { BUILD_WITH = if (ninja != null) then "ninja" else "make"; NINJA = pkgs.lib.optionalString (ninja != null) "${pkgs.lib.getExe ninja}"; CI_SKIP_TESTS = pkgs.lib.concatStringsSep "," ( - [ ] - ++ pkgs.lib.optionals useSharedAda [ - # Different versions of Ada affect the WPT tests - "test-url" - ] - ++ pkgs.lib.optionals useSharedOpenSSL [ + pkgs.lib.optionals useSharedOpenSSL [ # Path to the openssl.cnf is different from the expected one "test-strace-openat-openssl" ] diff --git a/test/wpt/test-url.js b/test/wpt/test-url.js index fc84c22a275c38..7f1ae43fc61080 100644 --- a/test/wpt/test-url.js +++ b/test/wpt/test-url.js @@ -1,5 +1,11 @@ 'use strict'; +const { skip } = require('../common'); + +if (process.config.variables.node_shared_ada) { + skip('Different versions of Ada affect the WPT tests'); +} + const { WPTRunner } = require('../common/wpt'); const runner = new WPTRunner('url');