diff options
author | Satya Rohith <me@satyarohith.com> | 2021-10-10 15:46:11 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 15:46:11 +0530 |
commit | 29f9e14457998085ec38cce597558d88b3d804e7 (patch) | |
tree | b437b5aa1d629490599c2eee4c3088f6877ae6d0 /cli/tests/integration/mod.rs | |
parent | 25771b3d9b36a7262d42809bfbb5497ed8057780 (diff) |
feat: stabilize Deno.resolveDns (#12368)
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r-- | cli/tests/integration/mod.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs index 65a8a7516..251fca515 100644 --- a/cli/tests/integration/mod.rs +++ b/cli/tests/integration/mod.rs @@ -925,7 +925,6 @@ async fn test_resolve_dns() { .env("NO_COLOR", "1") .arg("run") .arg("--allow-net") - .arg("--unstable") .arg("resolve_dns.ts") .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) @@ -951,7 +950,6 @@ async fn test_resolve_dns() { .env("NO_COLOR", "1") .arg("run") .arg("--allow-net=127.0.0.1:4553") - .arg("--unstable") .arg("resolve_dns.ts") .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) @@ -977,7 +975,6 @@ async fn test_resolve_dns() { .env("NO_COLOR", "1") .arg("run") .arg("--allow-net=deno.land") - .arg("--unstable") .arg("resolve_dns.ts") .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) @@ -999,7 +996,6 @@ async fn test_resolve_dns() { .current_dir(util::testdata_path()) .env("NO_COLOR", "1") .arg("run") - .arg("--unstable") .arg("resolve_dns.ts") .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) |