mirror of https://github.com/tc39/test262.git
31 lines
827 B
JavaScript
31 lines
827 B
JavaScript
// Copyright (C) 2019 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: Rejecting through immediate invocation of the provided resolving function
|
|
esid: sec-promise.allsettled
|
|
info: |
|
|
6. Let result be PerformPromiseAllSettled(iteratorRecord, C, promiseCapability).
|
|
|
|
Runtime Semantics: PerformPromiseAllSettled
|
|
|
|
6. Repeat
|
|
...
|
|
z. Perform ? Invoke(nextPromise, "then", « resolveElement, rejectElement »).
|
|
flags: [async]
|
|
includes: [promiseHelper.js]
|
|
features: [Promise.allSettled]
|
|
---*/
|
|
|
|
var simulation = {};
|
|
var thenable = {
|
|
then(_, reject) {
|
|
reject(simulation);
|
|
}
|
|
};
|
|
|
|
Promise.allSettled([thenable])
|
|
.then((settleds) => {
|
|
checkSettledPromises(settleds, [{ status: 'rejected', reason: simulation }]);
|
|
}).then($DONE, $DONE);
|