Skip to content

Commit c943cd0

Browse files
danbevaddaleax
authored andcommitted
test: fix repl-tab-complete --without-ssl
Currently, when configured --without-ssl test-repl-tab-complete fails with the following error: assert.js:43 throw new errors.AssertionError(obj); ^ AssertionError [ERR_ASSERTION]: [ [], 'lexicalL' ] deepStrictEqual [] at testRepl.complete.common.mustCall (node/test/parallel/test-repl-tab-complete.js:549:14) at /node/test/common/index.js:530:15 at completionGroupsLoaded (repl.js:1204:5) at REPLServer.complete (repl.js:1090:11) at REPLServer.completer (repl.js:450:14) at REPLServer.complete (repl.js:919:18) at __dirname.forEach (parallel/test-repl-tab-complete.js:548:14) at Array.forEach (<anonymous>) at Object.<anonymous> (parallel/test-repl-tab-complete.js:545:29) at Module._compile (module.js:660:30) This commit attempts to fix this test but I'm not sure if this is a proper fix as I'm not familiar with the repl code base yet. PR-URL: #17867 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent e4fe235 commit c943cd0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/parallel/test-repl-tab-complete.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,8 @@ editor.completer('var log = console.l', common.mustCall((error, data) => {
544544

545545
['Let', 'Const', 'Klass'].forEach((type) => {
546546
const query = `lexical${type[0]}`;
547-
const expected = hasInspector ? [[`lexical${type}`], query] : [];
547+
const expected = hasInspector ? [[`lexical${type}`], query] :
548+
[[], `lexical${type[0]}`];
548549
testRepl.complete(query, common.mustCall((error, data) => {
549550
assert.deepStrictEqual(data, expected);
550551
}));

0 commit comments

Comments
 (0)