mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7a0e462f9f
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
23 lines
658 B
JavaScript
23 lines
658 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
const emitUncaught = path.join(common.fixturesDir, 'debug-uncaught-async.js');
|
|
const result = spawn(process.execPath, [emitUncaught], {encoding: 'utf8'});
|
|
|
|
let stderr = '';
|
|
result.stderr.on('data', (data) => {
|
|
stderr += data;
|
|
});
|
|
|
|
result.on('close', (code) => {
|
|
const expectedMessage =
|
|
"There was an internal error in Node's debugger. Please report this bug.";
|
|
|
|
assert.strictEqual(code, 1);
|
|
assert(stderr.includes(expectedMessage));
|
|
assert(stderr.includes('Error: fhqwhgads'));
|
|
});
|