mirror of https://github.com/nodejs/node.git
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());
|