mirror of https://github.com/tc39/test262.git
29 lines
838 B
JavaScript
29 lines
838 B
JavaScript
// 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.plaintime.compare
|
|
description: ISO 8601 time designator "T" allowed at the start of PlainTime strings
|
|
features: [Temporal, arrow-function]
|
|
---*/
|
|
|
|
const halfPast = new Temporal.PlainTime(0, 30);
|
|
const validStrings = [
|
|
"T00:30",
|
|
"t00:30",
|
|
"T0030",
|
|
"t0030",
|
|
"T00:30:00",
|
|
"t00:30:00",
|
|
"T003000",
|
|
"t003000",
|
|
"T00:30:00.000000000",
|
|
"t00:30:00.000000000",
|
|
"T003000.000000000",
|
|
"t003000.000000000",
|
|
];
|
|
validStrings.forEach((arg) => {
|
|
assert.sameValue(Temporal.PlainTime.compare(arg, halfPast), 0, `T prefix is accepted: ${arg} (first argument)`);
|
|
assert.sameValue(Temporal.PlainTime.compare(halfPast, arg), 0, `T prefix is accepted: ${arg} (second argument)`);
|
|
});
|