summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/PluralRules/prototype/selectRange/length.js
blob: 56f550c30139a4021621cbafadcd95cf5c9cbff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-Intl.PluralRules.prototype.selectRange
description: Intl.PluralRules.prototype.selectRange.length is 2
includes: [propertyHelper.js]
features: [Intl.NumberFormat-v3]
---*/

verifyProperty(Intl.PluralRules.prototype.selectRange, 'length', {
  value: 2,
  enumerable: false,
  writable: false,
  configurable: true,
});

reportCompare(0, 0);