// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally // 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.plaindate.prototype.since description: RangeError thrown when largestUnit option not one of the allowed string values features: [Temporal] ---*/ const earlier = new Temporal.PlainDate(2000, 5, 2); const later = new Temporal.PlainDate(2001, 6, 3); const badValues = [ "era", "eraYear", "hour", "minute", "second", "millisecond", "microsecond", "nanosecond", "month\0", "YEAR", "eras", "eraYears", "hours", "minutes", "seconds", "milliseconds", "microseconds", "nanoseconds", "months\0", "YEARS", "other string" ]; for (const largestUnit of badValues) { assert.throws(RangeError, () => later.since(earlier, { largestUnit }), `"${largestUnit}" is not a valid value for largestUnit`); } reportCompare(0, 0);