summaryrefslogtreecommitdiff
path: root/tests/unit_node/readline_test.ts
blob: 68f0cd7c920a619145293b522aeb010233645c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2018-2024 the Deno authors. All rights reserved. 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();
});