summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/NumberFormat/constructor-notation.js
blob: 91dc05937c77ef7d6e71486da706751687d054cf (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
27
28
29
30
31
32
33
// Copyright 2019 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-initializenumberformat
description: Checks handling of the notation option to the NumberFormat constructor.
info: |
    InitializeNumberFormat ( numberFormat, locales, options )

    16. Let notation be ? GetOption(options, "notation", "string", « "standard", "scientific", "engineering", "compact" », "standard").
    17. Set numberFormat.[[Notation]] to notation.

features: [Intl.NumberFormat-unified]
---*/

const values = [
  [undefined, "standard"],
  ["standard"],
  ["scientific"],
  ["engineering"],
  ["compact"],
];

for (const [value, expected = value] of values) {
  const nf = new Intl.NumberFormat([], {
    notation: value,
  });
  const resolvedOptions = nf.resolvedOptions();
  assert.sameValue("notation" in resolvedOptions, true);
  assert.sameValue(resolvedOptions.notation, expected);
}

reportCompare(0, 0);