summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DurationFormat/prototype/format/throw-invoked-as-func.js
blob: 1e59d7c6d9baebdec489b9a02df96e7f17708bad (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
// |reftest| skip -- Intl.DurationFormat is not supported
// Copyright (C) 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: basic tests internal slot initialization and call receiver errors
info: |
  Intl.DurationFormat.prototype.format ( duration )
  (...)
    2. Perform ? RequireInternalSlot(df, [[InitializedDurationFormat]]).
features: [Intl.DurationFormat]
---*/

const df = new Intl.DurationFormat();

let f = df["format"];

assert.sameValue(typeof f, "function");
assert.throws(TypeError, () => {
  f({ hours: 1, minutes: 46, seconds: 40 });
});

reportCompare(0, 0);