mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
d2b5254c33
Re-attempt at #21284. I was more thorough this time. --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
17 lines
632 B
TypeScript
17 lines
632 B
TypeScript
// deno-lint-ignore-file no-undef
|
|
// Copyright 2018-2023 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");
|
|
},
|
|
});
|