blob: d1bd7ab5253e15b3104893d048006146b9cd6eec [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.compare
description: RangeError thrown if a string with UTC designator is used as a PlainYearMonth
features: [Temporal, arrow-function]
---*/
const invalidStrings = [
"2019-10-01T09:00:00Z",
"2019-10-01T09:00:00Z[UTC]",
];
const yearMonth = new Temporal.PlainYearMonth(2000, 5);
invalidStrings.forEach((arg) => {
assert.throws(
RangeError,
() => Temporal.PlainYearMonth.compare(arg, yearMonth),
"String with UTC designator should not be valid as a PlainYearMonth (first argument)"
);
assert.throws(
RangeError,
() => Temporal.PlainYearMonth.compare(yearMonth, arg),
"String with UTC designator should not be valid as a PlainYearMonth (second argument)"
);
});