mirror of https://github.com/tc39/test262.git
21 lines
1.1 KiB
JavaScript
21 lines
1.1 KiB
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.zoneddatetime.from
|
|
description: Conversion of ISO date-time strings to Temporal.TimeZone instances (with IANA time zones)
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let timeZone = "2021-08-19T17:30[America/Vancouver]";
|
|
const result1 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
|
|
assert.sameValue(result1.timeZoneId, "America/Vancouver", "date-time + IANA annotation is the IANA time zone");
|
|
|
|
timeZone = "2021-08-19T17:30Z[America/Vancouver]";
|
|
const result2 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
|
|
assert.sameValue(result2.timeZoneId, "America/Vancouver", "date-time + Z + IANA annotation is the IANA time zone");
|
|
|
|
timeZone = "2021-08-19T17:30-07:00[America/Vancouver]";
|
|
const result3 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
|
|
assert.sameValue(result3.timeZoneId, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone");
|