diff options
Diffstat (limited to 'cli/tests/unit_node/readline_test.ts')
-rw-r--r-- | cli/tests/unit_node/readline_test.ts | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/cli/tests/unit_node/readline_test.ts b/cli/tests/unit_node/readline_test.ts deleted file mode 100644 index ecd1a893d..000000000 --- a/cli/tests/unit_node/readline_test.ts +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { createInterface, Interface } from "node:readline"; -import { assertInstanceOf } from "@test_util/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(); -}); |