Remove the command line flag that was needed for N-API module loading. Re: https://github.com/nodejs/vm/issues/9 Backport-PR-URL: https://github.com/nodejs/node/pull/19447 PR-URL: https://github.com/nodejs/node/pull/14902 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Hitesh Kanwathirtha <digitalinfinity@gmail.com>
30 lines
994 B
JavaScript
30 lines
994 B
JavaScript
'use strict';
|
|
const common = require('../../common');
|
|
const assert = require('assert');
|
|
const child_process = require('child_process');
|
|
const test_async = require(`./build/${common.buildType}/test_async`);
|
|
|
|
const testException = 'test_async_cb_exception';
|
|
|
|
// Exception thrown from async completion callback.
|
|
// (Tested in a spawned process because the exception is fatal.)
|
|
if (process.argv[2] === 'child') {
|
|
test_async.Test(1, {}, common.mustCall(function() {
|
|
throw new Error(testException);
|
|
}));
|
|
return;
|
|
}
|
|
const p = child_process.spawnSync(
|
|
process.execPath, [ __filename, 'child' ]);
|
|
assert.ifError(p.error);
|
|
assert.ok(p.stderr.toString().includes(testException));
|
|
|
|
// Successful async execution and completion callback.
|
|
test_async.Test(5, {}, common.mustCall(function(err, val) {
|
|
assert.strictEqual(err, null);
|
|
assert.strictEqual(val, 10);
|
|
process.nextTick(common.mustCall());
|
|
}));
|
|
|
|
// Async work item cancellation with callback.
|
|
test_async.TestCancel(common.mustCall());
|