summaryrefslogtreecommitdiff
path: root/cli/tests/resolve_dns.ts.out
diff options
context:
space:
mode:
authorYusuke Tanaka <yusuktan@maguro.dev>2021-01-19 23:39:04 +0900
committerGitHub <noreply@github.com>2021-01-19 09:39:04 -0500
commit0ef8c915c07fa3e7c7898b467d259426144958f4 (patch)
treeba83fb5b813110e92fcb5ae634f0121d628acf0f /cli/tests/resolve_dns.ts.out
parentcf3202644d99f57af3c1da169435f0d1cd8eadd8 (diff)
feat(unstable): add Deno.resolveDns API (#8790)
Diffstat (limited to 'cli/tests/resolve_dns.ts.out')
-rw-r--r--cli/tests/resolve_dns.ts.out16
1 files changed, 16 insertions, 0 deletions
diff --git a/cli/tests/resolve_dns.ts.out b/cli/tests/resolve_dns.ts.out
new file mode 100644
index 000000000..10bd78e8a
--- /dev/null
+++ b/cli/tests/resolve_dns.ts.out
@@ -0,0 +1,16 @@
+A
+["1.2.3.4"]
+AAAA
+["1:2:3:4:5:6:7:8"]
+ANAME
+["aname.com."]
+CNAME
+["cname.com."]
+MX
+[{"preference":0,"exchange":"mx.com."}]
+PTR
+["ptr.com."]
+SRV
+[{"priority":0,"weight":100,"port":1234,"target":"srv.com."}]
+TXT
+[["foo","bar"]]