test262/test/intl402/DurationFormat/newtarget-undefined.js
Romulo Cintra 28455b13f5
Intl.DurationFormat update coverage (#3501)
* constructor tests coverage
* add localeMatcher tests
* add styles and numbering system tests
* re-organize folder and files structure
2022-05-03 08:19:32 -07:00

28 lines
685 B
JavaScript

// 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");
});