summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DurationFormat/prototype/format/negative-duration-style-default-en.js
blob: c6b58a5dfcf1aee04d62e986805d14b3aa3fea6b (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
// |reftest| skip -- Intl.DurationFormat is not supported
// Copyright (C) 2023 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-Intl.DurationFormat.prototype.format
description: >
  Test format method with negative duration and default style
locale: [en-US]
includes: [testIntl.js]
features: [Intl.DurationFormat]
---*/

const duration = {
  years: -1,
  months: -2,
  weeks: -3,
  days: -3,
  hours: -4,
  minutes: -5,
  seconds: -6,
  milliseconds: -7,
  microseconds: -8,
  nanoseconds: -9,
};

const expected = formatDurationFormatPattern(duration);

const df = new Intl.DurationFormat("en");
assert.sameValue(
  df.format(duration),
  expected,
  `DurationFormat format output using default style option`
);

reportCompare(0, 0);