mirror of
https://github.com/tc39/test262.git
synced 2025-11-18 04:39:44 +01:00
Temporal tests written for the SpiderMonkey implementation. Mostly covers edge cases around mathematical operations and regression tests for reported spec bugs.
17 lines
488 B
JavaScript
17 lines
488 B
JavaScript
// Copyright (C) 2022 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.timezone
|
|
description: >
|
|
TimeZone constructor accepts all time zone identifiers from Intl.supportedValuesOf.
|
|
features: [Temporal, Intl-enumeration]
|
|
---*/
|
|
|
|
// Ensure all identifiers are valid and canonical.
|
|
for (let id of Intl.supportedValuesOf("timeZone")) {
|
|
let tz = new Temporal.TimeZone(id);
|
|
|
|
assert.sameValue(tz.id, id);
|
|
}
|