mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2c4ebe0426
This makes sure that all async functions finish as expected. PR-URL: https://github.com/nodejs/node/pull/34363 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
// Flags: --experimental-vm-modules
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const { SourceTextModule } = require('vm');
|
|
|
|
const finished = common.mustCall();
|
|
|
|
(async function main() {
|
|
{
|
|
globalThis.count = 0;
|
|
const m = new SourceTextModule('count += 1;');
|
|
await m.link(common.mustNotCall());
|
|
assert.strictEqual(await m.evaluate(), undefined);
|
|
assert.strictEqual(globalThis.count, 1);
|
|
assert.strictEqual(await m.evaluate(), undefined);
|
|
assert.strictEqual(globalThis.count, 1);
|
|
assert.strictEqual(await m.evaluate(), undefined);
|
|
assert.strictEqual(globalThis.count, 1);
|
|
delete globalThis.count;
|
|
}
|
|
|
|
{
|
|
const m = new SourceTextModule('throw new Error()');
|
|
await m.link(common.mustNotCall());
|
|
|
|
let threw = false;
|
|
try {
|
|
await m.evaluate();
|
|
} catch (err) {
|
|
assert(err instanceof Error);
|
|
threw = true;
|
|
}
|
|
assert(threw);
|
|
|
|
threw = false;
|
|
try {
|
|
await m.evaluate();
|
|
} catch (err) {
|
|
assert(err instanceof Error);
|
|
threw = true;
|
|
}
|
|
assert(threw);
|
|
}
|
|
|
|
finished();
|
|
})().then(common.mustCall());
|