mirror of https://github.com/tc39/test262.git
27 lines
1.6 KiB
JavaScript
27 lines
1.6 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.now.zoneddatetimeiso
|
|
description: Conversion of ISO date-time strings to Temporal.TimeZone instances (with Intl time zones)
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let timeZone = "2021-08-19T17:30[America/Vancouver]";
|
|
const result1 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result1.timeZone.id, "America/Vancouver", "date-time + IANA annotation is the IANA time zone");
|
|
const result2 = Temporal.Now.zonedDateTimeISO({ timeZone });
|
|
assert.sameValue(result2.timeZone.id, "America/Vancouver", "date-time + IANA annotation is the IANA time zone (string in property bag)");
|
|
|
|
timeZone = "2021-08-19T17:30Z[America/Vancouver]";
|
|
const result3 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result3.timeZone.id, "America/Vancouver", "date-time + Z + IANA annotation is the IANA time zone");
|
|
const result4 = Temporal.Now.zonedDateTimeISO({ timeZone });
|
|
assert.sameValue(result4.timeZone.id, "America/Vancouver", "date-time + Z + IANA annotation is the IANA time zone (string in property bag)");
|
|
|
|
timeZone = "2021-08-19T17:30-07:00[America/Vancouver]";
|
|
const result5 = Temporal.Now.zonedDateTimeISO(timeZone);
|
|
assert.sameValue(result5.timeZone.id, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone");
|
|
const result6 = Temporal.Now.zonedDateTimeISO({ timeZone });
|
|
assert.sameValue(result6.timeZone.id, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone (string in property bag)");
|