mirror of https://github.com/tc39/test262.git
22 lines
683 B
JavaScript
22 lines
683 B
JavaScript
// Copyright (C) 2023 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: overflow property is extracted with ISO-invalid string argument.
|
|
includes: [compareArray.js, temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const expected = [
|
|
"ownKeys options",
|
|
"getOwnPropertyDescriptor options.overflow",
|
|
"get options.overflow",
|
|
];
|
|
|
|
let actual = [];
|
|
const options = TemporalHelpers.propertyBagObserver(actual, { overflow: "constrain" }, "options");
|
|
|
|
assert.throws(RangeError, () => Temporal.PlainYearMonth.from("2020-13", options));
|
|
assert.compareArray(actual, expected);
|