summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/PluralRules/prototype/selectRange/prop-desc.js
blob: 7a770e99c08bc6067e3aa3ec6e476633d0a54668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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: Property descriptor of Intl.PluralRules.prototype.selectRange
includes: [propertyHelper.js]
features: [Intl.NumberFormat-v3]
---*/

assert.sameValue(
  typeof Intl.PluralRules.prototype.selectRange,
  'function',
  '`typeof Intl.PluralRules.prototype.selectRange` is `function`'
);

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

reportCompare(0, 0);