blob: e7fb6b4417d089b35ecff2a2fc74beabedb4a6fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// |reftest| async
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Resolving with a non-thenable object value
esid: sec-promise.any
info: |
PerformPromiseAny
Set remainingElementsCount.[[Value]] to remainingElementsCount.[[Value]] + 1.
Perform ? Invoke(nextPromise, "then", « resultCapability.[[Resolve]], rejectElement »).
flags: [async]
features: [Promise.any]
---*/
const a = {};
const b = {};
const c = {};
Promise.any([a, b, c])
.then((value) => {
assert.sameValue(value, a);
}, () => {
$DONE('The promise should not be rejected.');
}).then($DONE, $DONE);
|