summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DurationFormat/newtarget-undefined.js
blob: 5cafac6772553d6dcf2778999f8cd10acf079e6f (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
// |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
description: >
    Verifies the NewTarget check for Intl.DurationFormat.
info: |
    Intl.DurationFormat ([ locales [ , options ]])
    (...)
    1. If NewTarget is undefined, throw a TypeError exception.
features: [Intl.DurationFormat]
---*/

assert.sameValue(typeof Intl.DurationFormat, "function");

assert.throws(TypeError, function() {
  Intl.DurationFormat();
});

assert.throws(TypeError, function() {
  Intl.DurationFormat("en");
});

assert.throws(TypeError, function() {
  Intl.DurationFormat("not-valid-tag");
});

reportCompare(0, 0);