Source code
Revision control
Copy as Markdown
Other Tools
// Copyright (C) 2026 Danial Asaria (Bloomberg LP). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-promise.allkeyed
description: >
Promise.allKeyed rejects when the promises argument is a BigInt
info: |
Promise.allKeyed ( promises )
...
5. If promises is not an Object, then
a. Let error be a newly created TypeError object.
b. Perform ? Call(promiseCapability.[[Reject]], undefined, « error »).
c. Return promiseCapability.[[Promise]].
includes: [asyncHelpers.js]
flags: [async]
features: [await-dictionary, BigInt]
---*/
asyncTest(function() {
return assert.throwsAsync(TypeError, function() {
return Promise.allKeyed(0n);
}, 'BigInt');
});