summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/fromAsync/asyncitems-arraylike-length-accessor-throws.js
blob: 81932ec791096a6838adba3a998444c9fcde745e (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) 2023 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.fromasync
description: Rejects on array-like object whose length cannot be gotten
info: |
  3.k.iii. Let _len_ be ? LengthOfArrayLike(_arrayLike_).
features: [Array.fromAsync]
flags: [async]
includes: [asyncHelpers.js]
---*/

asyncTest(async function () {
  await assert.throwsAsync(Test262Error, () => Array.fromAsync({
    get length() {
      throw new Test262Error('accessing length property fails');
    }
  }), "Promise should be rejected if array-like length getter throws");

  await assert.throwsAsync(TypeError, () => Array.fromAsync({
    length: 1n,
    0: 0
  }), "Promise should be rejected if array-like length can't be converted to a number");
});