mirror of https://github.com/tc39/test262.git
29 lines
728 B
JavaScript
29 lines
728 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.from
|
|
description: ISO 8601 time designator "T" allowed at the start of PlainTime strings
|
|
includes: [temporalHelpers.js]
|
|
features: [Temporal, arrow-function]
|
|
---*/
|
|
|
|
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) => {
|
|
const result = Temporal.PlainTime.from(arg);
|
|
TemporalHelpers.assertPlainTime(result, 0, 30, 0, 0, 0, 0, `T prefix is accepted: ${arg}`);
|
|
});
|