mirror of https://github.com/tc39/test262.git
30 lines
984 B
JavaScript
30 lines
984 B
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.instant.from
|
|
description: Various forms of time zone annotation; critical flag has no effect
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const tests = [
|
|
["1970-01-01T00:00Z[Asia/Kolkata]", "named, with Z"],
|
|
["1970-01-01T00:00Z[!Europe/Vienna]", "named, with Z and !"],
|
|
["1970-01-01T00:00Z[+00:00]", "numeric, with Z"],
|
|
["1970-01-01T00:00Z[!-02:30]", "numeric, with Z and !"],
|
|
["1970-01-01T00:00+00:00[UTC]", "named, with offset"],
|
|
["1970-01-01T00:00+00:00[!Africa/Abidjan]", "named, with offset and !"],
|
|
["1970-01-01T00:00+00:00[-08:00]", "numeric, with offset"],
|
|
["1970-01-01T00:00+00:00[!+01:00]", "numeric, with offset and !"],
|
|
];
|
|
|
|
tests.forEach(([arg, description]) => {
|
|
const result = Temporal.Instant.from(arg);
|
|
|
|
assert.sameValue(
|
|
result.epochNanoseconds,
|
|
0n,
|
|
`time zone annotation (${description})`
|
|
);
|
|
});
|