mirror of https://github.com/tc39/test262.git
Move test with IATA TimeZone to intl402
This commit is contained in:
parent
fdad35e658
commit
a3a31f0316
|
@ -0,0 +1,33 @@
|
|||
// 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.now.plaindatetimeiso
|
||||
description: Conversion of ISO date-time strings to Temporal.TimeZone instances
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2021-08-19T17:30";
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateTimeISO(timeZone), "bare date-time string is not a time zone");
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateTimeISO({ timeZone }), "bare date-time string is not a time zone");
|
||||
|
||||
// The following are all valid strings so should not throw:
|
||||
|
||||
[
|
||||
"2021-08-19T17:30Z",
|
||||
"2021-08-19T1730Z",
|
||||
"2021-08-19T17:30-07:00",
|
||||
"2021-08-19T1730-07:00",
|
||||
"2021-08-19T17:30-0700",
|
||||
"2021-08-19T1730-0700",
|
||||
"2021-08-19T17:30[America/Vancouver]",
|
||||
"2021-08-19T1730[America/Vancouver]",
|
||||
"2021-08-19T17:30Z[America/Vancouver]",
|
||||
"2021-08-19T1730Z[America/Vancouver]",
|
||||
"2021-08-19T17:30-07:00[America/Vancouver]",
|
||||
"2021-08-19T1730-07:00[America/Vancouver]",
|
||||
"2021-08-19T17:30-0700[America/Vancouver]",
|
||||
"2021-08-19T1730-0700[America/Vancouver]",
|
||||
].forEach((timeZone) => {
|
||||
Temporal.Now.plainDateTimeISO(timeZone);
|
||||
Temporal.Now.plainDateTimeISO({ timeZone });
|
||||
});
|
Loading…
Reference in New Issue