blob: 4132cb9a009fb3feacd14f2df8bfec86a067e818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// |reftest| skip -- Temporal is not supported
// Copyright (C) 2022 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: A string is parsed into the correct object when passed as the argument
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const validStrings = TemporalHelpers.ISO.plainYearMonthStringsValid().concat(TemporalHelpers.ISO.plainYearMonthStringsValidNegativeYear());
for (const arg of validStrings) {
assert.sameValue(
Temporal.PlainYearMonth.compare(arg, arg),
0,
`"${arg}" is a valid PlainYearMonth string`
);
}
reportCompare(0, 0);
|