%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
import { spawnPromisified } from '../common/index.mjs'; import { fileURL, path } from '../common/fixtures.mjs'; import { match, ok, notStrictEqual, strictEqual } from 'assert'; import { execPath } from 'node:process'; import { describe, it } from 'node:test'; describe('ESM: thenable loader hooks', { concurrency: true }, () => { it('should behave as a normal promise resolution', async () => { const { code, stderr } = await spawnPromisified(execPath, [ '--experimental-loader', fileURL('es-module-loaders', 'thenable-load-hook.mjs').href, path('es-modules', 'test-esm-ok.mjs'), ]); strictEqual(code, 0); ok(!stderr.includes('must not call')); }); it('should crash the node process rejection with an error', async () => { const { code, stderr } = await spawnPromisified(execPath, [ '--experimental-loader', fileURL('es-module-loaders', 'thenable-load-hook-rejected.mjs').href, path('es-modules', 'test-esm-ok.mjs'), ]); notStrictEqual(code, 0); match(stderr, /\sError: must crash the process\r?\n/); ok(!stderr.includes('must not call')); }); it('should just reject without an error (but NOT crash the node process)', async () => { const { code, stderr } = await spawnPromisified(execPath, [ '--experimental-loader', fileURL('es-module-loaders', 'thenable-load-hook-rejected-no-arguments.mjs').href, path('es-modules', 'test-esm-ok.mjs'), ]); notStrictEqual(code, 0); match(stderr, /\sundefined\r?\n/); ok(!stderr.includes('must not call')); }); });