mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
658 B
22 lines
658 B
'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'});
|
|
|
|
var 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'));
|
|
});
|
|
|