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.
This commit is contained in:
Nodari Chkuaselidze 2024-05-27 13:56:09 +04:00
parent 0a4f24bdb0
commit 45c26845e0
No known key found for this signature in database
GPG key ID: B018A7BB437D1F05

View file

@ -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;