summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/NumberFormat/test-option-roundingPriority.js
blob: afe01335fb83230667f017157c23b573decec1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-intl.numberformat
description: Tests that the option roundingPriority is processed correctly.
features: [Intl.NumberFormat-v3]
includes: [testIntl.js]
---*/

testOption(
  Intl.NumberFormat,
  "roundingPriority",
  "string",
  ["auto", "morePrecision", "lessPrecision"],
  "auto"
);

reportCompare(0, 0);