diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-11-18 19:27:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 19:27:44 +0000 |
commit | 3ba464dbc40dd2d6bd3f7a1912aa8f0fad95058f (patch) | |
tree | 1a696cf20b07b785a367b7190c1fa0e4020aa26d /tests/node_compat/config.jsonc | |
parent | cff6e280c77afb0bc42a10348eeef5360db8f361 (diff) |
chore: temporarily disable dns tests for Node compat (#26915)
These tests are hitting a remote server which sometimes starts failing
randomly on CI.
They need to be rewritten to use a local server and have `/etc/hosts`
setup that remaps relevants URLs.
Diffstat (limited to 'tests/node_compat/config.jsonc')
-rw-r--r-- | tests/node_compat/config.jsonc | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/tests/node_compat/config.jsonc b/tests/node_compat/config.jsonc index 664adaedf..31b184505 100644 --- a/tests/node_compat/config.jsonc +++ b/tests/node_compat/config.jsonc @@ -13,10 +13,12 @@ "x.txt" ], "internet": [ - "test-dns-any.js", - "test-dns-ipv4.js", - "test-dns-ipv6.js", - "test-dns.js" + // TODO(bartlomieju): temporarily disabled as these tests were hitting nodejs.org + // server. We should have a setup that hits a local server instead. + // "test-dns-any.js", + // "test-dns-ipv4.js", + // "test-dns-ipv6.js", + // "test-dns.js" ], "parallel": [ "test-assert.js", @@ -149,15 +151,15 @@ ], "fixtures/keys": ["agent1-cert.pem", "agent1-key.pem", "ca1-cert.pem"], "internet": [ - "test-dns-any.js", + // "test-dns-any.js", "test-dns-idna2008.js", - "test-dns-ipv4.js", - "test-dns-ipv6.js", + // "test-dns-ipv4.js", + // "test-dns-ipv6.js", "test-dns-lookup.js", "test-dns-promises-resolve.js", "test-dns-regress-6244.js", "test-dns-setserver-in-callback-of-resolve4.js", - "test-dns.js", + // "test-dns.js", "test-http-https-default-ports.js" ], "parallel": [ |