From 504bfd7a88cbcdcd5a0048a2b9ff96da67df0438 Mon Sep 17 00:00:00 2001 From: Qingyu Deng Date: Mon, 24 May 2021 23:45:44 +0800 Subject: [PATCH] test: improve coverage for `question` in readline PR-URL: https://github.com/nodejs/node/pull/38799 Refs: https://coverage.nodejs.org/coverage-dc43066ee9a37655/lib/readline.js.html#L443 Reviewed-By: Antoine du Hamel Reviewed-By: Zijian Liu Reviewed-By: Anto Aravinth Reviewed-By: James M Snell --- test/parallel/test-readline-interface.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test/parallel/test-readline-interface.js b/test/parallel/test-readline-interface.js index 80e3063fe33bb3..4684975bea6bad 100644 --- a/test/parallel/test-readline-interface.js +++ b/test/parallel/test-readline-interface.js @@ -895,6 +895,18 @@ for (let i = 0; i < 12; i++) { rli.close(); } + // Calling the question multiple times + { + const [rli] = getInterface({ terminal }); + rli.question('foo?', common.mustCall((answer) => { + assert.strictEqual(answer, 'baz'); + })); + rli.question('bar?', common.mustNotCall(() => { + })); + rli.write('baz\n'); + rli.close(); + } + // Can create a new readline Interface with a null output argument { const [rli, fi] = getInterface({ output: null, terminal });