mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
0ffcb46e0f
This reverts commit 20aa0796e6
.
`main` has been failing consistenly on `kv_undelivered_test` and
`serve_test` after this upgrade.
17 lines
637 B
TypeScript
17 lines
637 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/testing/asserts.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");
|
|
},
|
|
});
|