mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
caee112e52
There is actually no reason to use `assert.doesNotThrow()` in the tests. If a test throws, just let the error bubble up right away instead of first catching it and then rethrowing it. PR-URL: https://github.com/nodejs/node/pull/18669 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
14 lines
368 B
JavaScript
14 lines
368 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const repl = require('repl');
|
|
|
|
const replserver = new repl.REPLServer();
|
|
|
|
replserver._inTemplateLiteral = true;
|
|
|
|
// `null` gets treated like an empty string. (Should it? You have to do some
|
|
// strange business to get it into the REPL. Maybe it should really throw?)
|
|
|
|
replserver.emit('line', null);
|
|
replserver.emit('line', '.exit');
|