summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/repl_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit_node/repl_test.ts')
-rw-r--r--cli/tests/unit_node/repl_test.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/tests/unit_node/repl_test.ts b/cli/tests/unit_node/repl_test.ts
deleted file mode 100644
index adfc1d60a..000000000
--- a/cli/tests/unit_node/repl_test.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-// deno-lint-ignore-file no-undef
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-
-import repl from "node:repl";
-import { assert } from "@test_util/std/assert/mod.ts";
-
-Deno.test({
- name: "repl module exports",
- fn() {
- assert(typeof repl.REPLServer !== "undefined");
- assert(typeof repl.start !== "undefined");
- // @ts-ignore not present in declaration files, but libraries depend on it
- assert(typeof repl.builtinModules !== "undefined");
- // @ts-ignore not present in declaration files, but libraries depend on it
- assert(typeof repl._builtinLibs !== "undefined");
- },
-});