mirror of
https://github.com/tc39/test262.git
synced 2025-08-16 15:38:27 +02:00
For cases in the previous commit that actually removed some functionality from tests in built-ins/, add corresponding tests in intl402/ to preserve test coverage of that functionality for hosts that do support Intl.
27 lines
1.5 KiB
JavaScript
27 lines
1.5 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.timezone.from
|
|
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.TimeZone.from(timeZone);
|
|
assert.sameValue(result1.id, "America/Vancouver", "date-time + IANA annotation is the IANA time zone");
|
|
const result2 = Temporal.TimeZone.from({ timeZone });
|
|
assert.sameValue(result2.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.TimeZone.from(timeZone);
|
|
assert.sameValue(result3.id, "America/Vancouver", "date-time + Z + IANA annotation is the IANA time zone");
|
|
const result4 = Temporal.TimeZone.from({ timeZone });
|
|
assert.sameValue(result4.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.TimeZone.from(timeZone);
|
|
assert.sameValue(result5.id, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone");
|
|
const result6 = Temporal.TimeZone.from({ timeZone });
|
|
assert.sameValue(result6.id, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone (string in property bag)");
|