summaryrefslogtreecommitdiff
path: root/cli/js/net_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/net_test.ts')
-rw-r--r--cli/js/net_test.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/js/net_test.ts b/cli/js/net_test.ts
index e4d0be81f..7f5334df3 100644
--- a/cli/js/net_test.ts
+++ b/cli/js/net_test.ts
@@ -1,5 +1,6 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { testPerm, assert, assertEquals } from "./test_util.ts";
+import { runIfMain } from "../../std/testing/mod.ts";
testPerm({ net: true }, function netListenClose(): void {
const listener = Deno.listen({ hostname: "127.0.0.1", port: 4500 });
@@ -239,3 +240,5 @@ testPerm({ net: true }, async function netDoubleCloseWrite() {
conn.close();
});
*/
+
+runIfMain(import.meta);