blob: e3055ec8c49a2035d64c18b2155193d53325dacf [file] [log] [blame]
// 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.prototype.until
description: RangeError thrown when largestUnit option not one of the allowed string values
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
const badValues = [
"era",
"eraYear",
"week",
"day",
"hour",
"minute",
"second",
"millisecond",
"microsecond",
"nanosecond",
"month\0",
"YEAR",
"eras",
"eraYears",
"weeks",
"days",
"hours",
"minutes",
"seconds",
"milliseconds",
"microseconds",
"nanoseconds",
"months\0",
"YEARS",
"other string"
];
for (const largestUnit of badValues) {
assert.throws(RangeError, () => earlier.until(later, { largestUnit }),
`"${largestUnit}" is not a valid value for largestUnit`);
}