summaryrefslogtreecommitdiff
path: root/tests/testdata
diff options
context:
space:
mode:
authorKenta Moriuchi <moriken@kimamass.com>2024-09-11 06:36:43 +0900
committerGitHub <noreply@github.com>2024-09-10 21:36:43 +0000
commite522f4b65a3439030506733b104498f21422ede0 (patch)
treefdc344f8c28aefe387d5c8048e01d0a2240bc8e5 /tests/testdata
parenta69b1e699ef76568a4a3da47939134abda545ec7 (diff)
BREAKING(temporal/unstable): Remove obsoleted Temporal APIs part 2 (#25505)
Mainly I removed `Temporal.Calendar` and `Temporal.TimeZone` and replaced them to APIs that handle calendar and timezone as strings. https://github.com/tc39/proposal-temporal/pull/2925 Related #24836
Diffstat (limited to 'tests/testdata')
-rw-r--r--tests/testdata/run/unstable_temporal_api/deno.json3
-rw-r--r--tests/testdata/run/unstable_temporal_api/main.out12
-rw-r--r--tests/testdata/run/unstable_temporal_api/main.ts71
3 files changed, 0 insertions, 86 deletions
diff --git a/tests/testdata/run/unstable_temporal_api/deno.json b/tests/testdata/run/unstable_temporal_api/deno.json
deleted file mode 100644
index fea0791c5..000000000
--- a/tests/testdata/run/unstable_temporal_api/deno.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "unstable": ["temporal"]
-}
diff --git a/tests/testdata/run/unstable_temporal_api/main.out b/tests/testdata/run/unstable_temporal_api/main.out
deleted file mode 100644
index 46d25c3ea..000000000
--- a/tests/testdata/run/unstable_temporal_api/main.out
+++ /dev/null
@@ -1,12 +0,0 @@
-Check [WILDCARD]
-Temporal.Now [WILDCARD]
-Temporal.Instant 1969-07-20T20:17:00Z
-Temporal.ZonedDateTime 1995-12-07T03:24:30.0000035-08:00[America/Los_Angeles]
-Temporal.PlainDate 2006-08-24
-Temporal.PlainTime 19:39:09.068346205
-Temporal.PlainDateTime 1995-12-07T15:00:00
-Temporal.PlainYearMonth 2020-10
-Temporal.PlainMonthDay 07-14
-Temporal.Duration PT130H20M
-Temporal.TimeZone Africa/Cairo
-Temporal.Calendar 1999-12-31
diff --git a/tests/testdata/run/unstable_temporal_api/main.ts b/tests/testdata/run/unstable_temporal_api/main.ts
deleted file mode 100644
index 1641b90bf..000000000
--- a/tests/testdata/run/unstable_temporal_api/main.ts
+++ /dev/null
@@ -1,71 +0,0 @@
-console.log("Temporal.Now", Temporal.Now.instant());
-console.log(
- "Temporal.Instant",
- Temporal.Instant.from("1969-07-20T20:17Z"),
-);
-console.log(
- "Temporal.ZonedDateTime",
- Temporal.ZonedDateTime.from({
- timeZone: "America/Los_Angeles",
- year: 1995,
- month: 12,
- day: 7,
- hour: 3,
- minute: 24,
- second: 30,
- millisecond: 0,
- microsecond: 3,
- nanosecond: 500,
- }),
-);
-console.log(
- "Temporal.PlainDate",
- Temporal.PlainDate.from({ year: 2006, month: 8, day: 24 }),
-);
-console.log(
- "Temporal.PlainTime",
- Temporal.PlainTime.from({
- hour: 19,
- minute: 39,
- second: 9,
- millisecond: 68,
- microsecond: 346,
- nanosecond: 205,
- }),
-);
-console.log(
- "Temporal.PlainDateTime",
- Temporal.PlainDateTime.from({
- year: 1995,
- month: 12,
- day: 7,
- hour: 15,
- }),
-);
-console.log(
- "Temporal.PlainYearMonth",
- Temporal.PlainYearMonth.from({ year: 2020, month: 10 }),
-);
-console.log(
- "Temporal.PlainMonthDay",
- Temporal.PlainMonthDay.from({ month: 7, day: 14 }),
-);
-console.log(
- "Temporal.Duration",
- Temporal.Duration.from({
- hours: 130,
- minutes: 20,
- }),
-);
-console.log(
- "Temporal.TimeZone",
- Temporal.TimeZone.from("Africa/Cairo"),
-);
-console.log(
- "Temporal.Calendar",
- Temporal.Calendar.from("iso8601").dateFromFields({
- year: 1999,
- month: 12,
- day: 31,
- }, {}),
-);