summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/temporal/calendar-day.js
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2021-09-17 14:34:02 +0200
committerMichaël Zasso <targos@protonmail.com>2021-10-02 08:40:27 +0200
commit4f722915218862b108c90371503d26a3fe89f4c9 (patch)
treecd1577faff9acc20eb8e4a0e2d6ed1856bf308fd /deps/v8/test/mjsunit/temporal/calendar-day.js
parent606bb521591a29df5401732bfbd19c1e31239ed9 (diff)
downloadnode-new-4f722915218862b108c90371503d26a3fe89f4c9.tar.gz
deps: update V8 to 9.4.146.18
PR-URL: https://github.com/nodejs/node/pull/39945 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'deps/v8/test/mjsunit/temporal/calendar-day.js')
-rw-r--r--deps/v8/test/mjsunit/temporal/calendar-day.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/temporal/calendar-day.js b/deps/v8/test/mjsunit/temporal/calendar-day.js
new file mode 100644
index 0000000000..27ad5a3369
--- /dev/null
+++ b/deps/v8/test/mjsunit/temporal/calendar-day.js
@@ -0,0 +1,17 @@
+// Copyright 2021 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+// Flags: --harmony-temporal
+
+// https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype.day
+let cal = new Temporal.Calendar("iso8601");
+
+assertEquals(15, cal.day(new Temporal.PlainDate(2021, 7, 15)));
+assertEquals(23, cal.day(new Temporal.PlainDateTime(1997, 8, 23, 5, 30, 13)));
+assertEquals(6, cal.day(new Temporal.PlainMonthDay(2, 6)));
+assertEquals(18, cal.day("2019-03-18"));
+
+// TODO test the following later
+//assertEquals(??, cal.day(new Temporal.ZonedDateTime(86400n * 366n * 50n,
+// "UTC")))
+//assertEquals(11, cal.day({year: 2001, month: 9, day: 11}));