mirror of
https://github.com/tc39/test262.git
synced 2025-09-29 04:58:48 +02:00
Previously, "nested" time zone property bags were unwrapped up to one level. That is, this object: { timeZone: { // ...Temporal.TimeZone methods } } would not be considered to implement the TimeZone protocol, but would have its timeZone property used instead, if it were passed to an API that required a TimeZone protocol object. These nested property bags are no longer supported. Discussion: https://github.com/tc39/proposal-temporal/issues/2104#issuecomment-1409549753 Corresponding normative PR: https://github.com/tc39/proposal-temporal/pull/2485
32 lines
1.4 KiB
JavaScript
32 lines
1.4 KiB
JavaScript
// 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.now.zoneddatetimeiso
|
|
description: Conversion of ISO date-time strings to Temporal.TimeZone instances
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let timeZone = "2021-08-19T17:30";
|
|
assert.throws(RangeError, () => Temporal.Now.zonedDateTimeISO(timeZone), "bare date-time string is not a time zone");
|
|
|
|
timeZone = "2021-08-19T17:30Z";
|
|
const result1 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result1.timeZoneId, "UTC", "date-time + Z is UTC time zone");
|
|
|
|
timeZone = "2021-08-19T17:30-07:00";
|
|
const result2 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result2.timeZoneId, "-07:00", "date-time + offset is the offset time zone");
|
|
|
|
timeZone = "2021-08-19T17:30[UTC]";
|
|
const result3 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result3.timeZoneId, "UTC", "date-time + IANA annotation is the IANA time zone");
|
|
|
|
timeZone = "2021-08-19T17:30Z[UTC]";
|
|
const result4 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result4.timeZoneId, "UTC", "date-time + Z + IANA annotation is the IANA time zone");
|
|
|
|
timeZone = "2021-08-19T17:30-07:00[UTC]";
|
|
const result5 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result5.timeZoneId, "UTC", "date-time + offset + IANA annotation is the IANA time zone");
|