summaryrefslogtreecommitdiff
path: root/cli/js/net_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-01-23 16:32:52 -0500
committerBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-23 22:32:52 +0100
commit74e6eb14dd4697ba8bf52e044af0e7dfef49e441 (patch)
tree8d2729ad1b89f8e1de52c81de1b00c4a1328fd7e /cli/js/net_test.ts
parent5a658a2ff758faef4a3d864ba0b2324fa731dfcc (diff)
update readmes (#3765)
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);