blob: e49303cfc03c852c562133cdfb3424d6c412b128 [file] [log] [blame]
// Copyright (C) 2019 Leo Balter, 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Resolved promises ignore rejections through deferred invocation of the
provided resolving function
esid: sec-promise.any
info: |
5. Let result be PerformPromiseAny(iteratorRecord, C, promiseCapability).
Runtime Semantics: PerformPromiseAny
8. Repeat
...
r. Perform ? Invoke(nextPromise, "then", « resultCapability.[[Resolve]], rejectElement »).
flags: [async]
features: [Promise.any, arrow-function]
---*/
var resolver = {
then(resolve) {
new Promise((resolve) => resolve())
.then(() => resolve(42));
}
};
var lateRejector = {
then(resolve, reject) {
new Promise((resolve) => resolve())
.then(() => {
resolve(9);
reject();
});
}
};
Promise.any([resolver, lateRejector])
.then(resolution => {
assert.sameValue(resolution, 42);
}).then($DONE, $DONE);