Skip to content

Commit 28792ee

Browse files
richardlautargos
authored andcommittedMar 11, 2025
test: skip test-config-json-schema with quic
`parallel/test-config-json-schema` compares to a generated fixture that assumes that Node.js was built with default configuration settings. Skip the test if non-default quic is enabled (`configure --with-quic`). Refs: #57016 Refs: #57142 PR-URL: #57225 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
1 parent 274c18a commit 28792ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎test/parallel/test-config-json-schema.js

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ if (!common.hasIntl) {
2121
common.skip('missing Intl');
2222
}
2323

24+
if (process.config.variables.node_quic) {
25+
common.skip('this test assumes default configuration options');
26+
}
27+
2428
const {
2529
generateConfigJsonSchema,
2630
} = require('internal/options');

0 commit comments

Comments
 (0)
Please sign in to comment.