summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DurationFormat/prototype/format/style-short-en.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/DurationFormat/prototype/format/style-short-en.js')
-rw-r--r--js/src/tests/test262/intl402/DurationFormat/prototype/format/style-short-en.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/DurationFormat/prototype/format/style-short-en.js b/js/src/tests/test262/intl402/DurationFormat/prototype/format/style-short-en.js
new file mode 100644
index 0000000000..2a66c01b06
--- /dev/null
+++ b/js/src/tests/test262/intl402/DurationFormat/prototype/format/style-short-en.js
@@ -0,0 +1,33 @@
+// |reftest| skip -- Intl.DurationFormat is not supported
+// Copyright 2022 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-Intl.DurationFormat.prototype.format
+description: Test if format method formats duration correctly with different "style" arguments
+locale: [en-US]
+includes: [testIntl.js]
+features: [Intl.DurationFormat]
+---*/
+
+const style = "short";
+
+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, style);
+
+const df = new Intl.DurationFormat("en", {style});
+assert.sameValue(df.format(duration), expected, `Assert DurationFormat format output using ${style} style option`);
+
+reportCompare(0, 0);