mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
d1ef6aa2db
The old import assertions proposal has been
renamed to "import attributes" with the follwing major changes:
1. The keyword is now `with` instead of `assert`.
2. Unknown assertions cause an error rather than being ignored,
This commit updates the documentation to encourage folks to use the new
syntax, and add aliases for module customization hooks.
PR-URL: https://github.com/nodejs/node/pull/50140
Fixes: https://github.com/nodejs/node/issues/50134
Refs: 159c82c5e6
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { strictEqual } = require('assert');
|
|
|
|
async function test() {
|
|
{
|
|
const results = await Promise.allSettled([
|
|
import('../fixtures/empty.js', { with: { type: 'json' } }),
|
|
import('../fixtures/empty.js'),
|
|
]);
|
|
|
|
strictEqual(results[0].status, 'rejected');
|
|
strictEqual(results[1].status, 'fulfilled');
|
|
}
|
|
|
|
{
|
|
const results = await Promise.allSettled([
|
|
import('../fixtures/empty.js'),
|
|
import('../fixtures/empty.js', { with: { type: 'json' } }),
|
|
]);
|
|
|
|
strictEqual(results[0].status, 'fulfilled');
|
|
strictEqual(results[1].status, 'rejected');
|
|
}
|
|
|
|
{
|
|
const results = await Promise.allSettled([
|
|
import('../fixtures/empty.json', { with: { type: 'json' } }),
|
|
import('../fixtures/empty.json'),
|
|
]);
|
|
|
|
strictEqual(results[0].status, 'fulfilled');
|
|
strictEqual(results[1].status, 'rejected');
|
|
}
|
|
|
|
{
|
|
const results = await Promise.allSettled([
|
|
import('../fixtures/empty.json'),
|
|
import('../fixtures/empty.json', { with: { type: 'json' } }),
|
|
]);
|
|
|
|
strictEqual(results[0].status, 'rejected');
|
|
strictEqual(results[1].status, 'fulfilled');
|
|
}
|
|
}
|
|
|
|
test().then(common.mustCall());
|