mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
92f6188253
This PR: 1. Replaces `@test_util/std`-prefixed imports with `@std`. 2. Adds `@std/` import map entries to a few `deno.json` files.
27 lines
840 B
TypeScript
27 lines
840 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { createInterface, Interface } from "node:readline";
|
|
import { assertInstanceOf } from "@std/assert/mod.ts";
|
|
import { Readable, Writable } from "node:stream";
|
|
|
|
Deno.test("[node/readline] createInstance", () => {
|
|
const rl = createInterface({
|
|
input: new Readable({ read() {} }),
|
|
output: new Writable(),
|
|
});
|
|
|
|
// deno-lint-ignore no-explicit-any
|
|
assertInstanceOf(rl, Interface as any);
|
|
});
|
|
|
|
// Test for https://github.com/denoland/deno/issues/19183
|
|
Deno.test("[node/readline] don't throw on rl.question()", () => {
|
|
const rli = createInterface({
|
|
input: new Readable({ read() {} }),
|
|
output: new Writable({ write() {} }),
|
|
terminal: true,
|
|
});
|
|
|
|
// Calling this would throw
|
|
rli.question("foo", () => rli.close());
|
|
rli.close();
|
|
});
|