mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
330f25ef82
Make changes so that tests will pass when the comma-dangle settings applied to the rest of the code base are also applied to tests. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
38 lines
864 B
JavaScript
38 lines
864 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cp = require('child_process');
|
|
const child = cp.spawn(process.execPath, ['-i']);
|
|
let output = '';
|
|
|
|
child.stdout.setEncoding('utf8');
|
|
child.stdout.on('data', (data) => {
|
|
output += data;
|
|
});
|
|
|
|
child.on('exit', common.mustCall(() => {
|
|
const results = output.split('\n');
|
|
results.shift();
|
|
assert.deepStrictEqual(
|
|
results,
|
|
[
|
|
'Type ".help" for more information.',
|
|
// x\n
|
|
'> Uncaught ReferenceError: x is not defined',
|
|
// Added `uncaughtException` listener.
|
|
'> short',
|
|
'undefined',
|
|
// x\n
|
|
'> Foobar',
|
|
'> ',
|
|
]
|
|
);
|
|
}));
|
|
|
|
child.stdin.write('x\n');
|
|
child.stdin.write(
|
|
'process.on("uncaughtException", () => console.log("Foobar"));' +
|
|
'console.log("short")\n');
|
|
child.stdin.write('x\n');
|
|
child.stdin.end();
|