deno/tests/unit_node/repl_test.ts
Asher Gomez 92f6188253
chore: use @std import instead of @test_util/std (#22398)
This PR:
1. Replaces `@test_util/std`-prefixed imports with `@std`.
2. Adds `@std/` import map entries to a few `deno.json` files.
2024-02-13 02:05:10 +00:00

18 lines
614 B
TypeScript

// 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 "@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");
},
});