1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-08 23:28:18 -05:00
denoland-deno/tests/unit_node/repl_test.ts
2024-12-31 19:12:39 +00:00

17 lines
586 B
TypeScript

// deno-lint-ignore-file no-undef
// Copyright 2018-2025 the Deno authors. MIT license.
import repl from "node:repl";
import { assert } from "@std/assert";
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");
},
});