test262/test/built-ins/Temporal/PlainYearMonth/from/overflow-invalid-string.js
Philip Chimento 77a34cf93f Add Temporal tests
This copies over the tests that previously existed in the
tc39/proposal-temporal repository.

For context, see thread starting at:
https://github.com/tc39/test262/issues/3002#issuecomment-926234480

In service of https://github.com/tc39/test262/issues/3002
2021-10-01 14:30:12 -04:00

33 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.from
description: RangeError thrown when overflow option not one of the allowed string values
info: |
sec-getoption step 10:
10. If _values_ is not *undefined* and _values_ does not contain an element equal to _value_, throw a *RangeError* exception.
sec-temporal-totemporaloverflow step 1:
1. Return ? GetOption(_normalizedOptions_, *"overflow"*, « String », « *"constrain"*, *"reject"* », *"constrain"*).
sec-temporal-totemporalyearmonth steps 23:
2. If Type(_item_) is Object, then
...
e. Return ? YearMonthFromFields(_calendar_, _fields_, _options_).
3. Perform ? ToTemporalOverflow(_options_).
sec-temporal.plainyearmonth.from steps 23:
2. If Type(_item_) is Object and _item_ has an [[InitializedTemporalYearMonth]] internal slot, then
a. Perform ? ToTemporalOverflow(_options_).
b. Return ...
3. Return ? ToTemporalYearMonth(_item_, _options_).
features: [Temporal]
---*/
const validValues = [
new Temporal.PlainYearMonth(2000, 5),
{ year: 2000, month: 5 },
"2000-05",
];
validValues.forEach((value) => {
assert.throws(RangeError, () => Temporal.PlainYearMonth.from(value, { overflow: "other string" }));
});