mirror of https://github.com/tc39/test262.git
16 lines
597 B
JavaScript
16 lines
597 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.plainmonthday.from
|
|
description: overflow property is not extracted with ISO-invalid string argument.
|
|
includes: [compareArray.js, temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let actual = [];
|
|
const options = TemporalHelpers.propertyBagObserver(actual, { overflow: "constrain" }, "options");
|
|
|
|
assert.throws(RangeError, () => Temporal.PlainMonthDay.from("13-34", options));
|
|
assert.compareArray(actual, [], "options read after string parsing");
|