1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
// 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.timezone
description: Basic tests for the Temporal.TimeZone constructor.
features: [Temporal]
---*/
const valid = [
["+01:00"],
["-01:00"],
["+0330", "+03:30"],
["-0650", "-06:50"],
["-08", "-08:00"],
["\u221201:00", "-01:00"],
["\u22120650", "-06:50"],
["\u221208", "-08:00"],
["UTC"],
];
for (const [zone, id = zone] of valid) {
const result = new Temporal.TimeZone(zone);
assert.sameValue(typeof result, "object", `object should be created for ${zone}`);
assert.sameValue(result.id, id, `id for ${zone} should be ${id}`);
}
const invalid = ["+00:01.1", "-01.1", "+01:00:00", "-010000", "+03:30:00.000000001", "-033000.1"];
for (const zone of invalid) {
assert.throws(RangeError, () => new Temporal.TimeZone(zone), `should throw for ${zone}`);
}
reportCompare(0, 0);
|