/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit_node/readline_test.ts
27 строк
812 B
Kenta Moriuchi
chore: Happy New Year 2026 (#31748)
08 янв 2026, 18:28
Не верифицирован
08 янв 2026, 18:28
8193cf9
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { createInterface, Interface } from "node:readline"; import { assertInstanceOf } from "@std/assert"; 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(); });