aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/number-format/unified/unit-display.js
blob: eeb2c69ece90d9953696736a2cb85e68b4ab96c1 (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
34
35
36
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --harmony-intl-numberformat-unified

// Test default.
let nf = new Intl.NumberFormat();
assertEquals(undefined, nf.resolvedOptions().unitDisplay);

nf = new Intl.NumberFormat("en");
assertEquals(undefined, nf.resolvedOptions().unitDisplay);

nf = new Intl.NumberFormat("en", {style: 'decimal'});
assertEquals(undefined, nf.resolvedOptions().unitDisplay);

nf = new Intl.NumberFormat("en", {style: 'currency', currency: 'TWD'});
assertEquals(undefined, nf.resolvedOptions().unitDisplay);

nf = new Intl.NumberFormat("en", {style: 'unit', unit: "meter"});
assertEquals("short", nf.resolvedOptions().unitDisplay);

nf = new Intl.NumberFormat("en", {style: 'percent'});
assertEquals("short", nf.resolvedOptions().unitDisplay);

const testData = [
    ["short"],
    ["narrow"],
    ["long"],
];

for (const [unitDisplay] of testData) {
  nf = new Intl.NumberFormat("en", {style: 'unit', unit: "meter", unitDisplay});
  assertEquals('unit', nf.resolvedOptions().style);
  assertEquals(unitDisplay, nf.resolvedOptions().unitDisplay);
}