From 45c26845e00946cbc1a0a97e73ee22b716a8f019 Mon Sep 17 00:00:00 2001 From: Nodari Chkuaselidze Date: Mon, 27 May 2024 13:56:09 +0400 Subject: [PATCH] test: disable dns-test until c-ares fix. c-ares rewrote their DNS record parsing code and since c-ares 1.21 does not allow ANY records (https://github.com/c-ares/c-ares/pull/765). Node.js v18 since v18.20, Node.js v20 since v20.12 and Node.js v22 are all using newer version c-ares, which breaks this code. After this issue is resolved in c-ares and node.js has upgraded c-ares we can enable this test case again. --- test/dns-test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/dns-test.js b/test/dns-test.js index dfb762d67..37a24c83f 100644 --- a/test/dns-test.js +++ b/test/dns-test.js @@ -13,7 +13,8 @@ const recursiveResolver = new Resolver({timeout: 1000}); rootResolver.setServers([`127.0.0.1:${network.nsPort}`]); recursiveResolver.setServers([`127.0.0.1:${network.rsPort}`]); -describe('Server Configuration', function() { +// TODO: Enable once node.js supports ANY + SIG(0) queries (c-ares issue) +describe.skip('Server Configuration', function() { describe('Full Node', function() { let node;