-
Notifications
You must be signed in to change notification settings - Fork 765
Closed
Labels
Description
Describe the bug
The test fail on 31/12. Here is a simple patch:
--- a/test/datetime/relative.test.js
+++ b/test/datetime/relative.test.js
@@ -121,7 +121,9 @@
test("DateTime#toRelativeCalendar picks the correct unit with no options", () => {
const now = DateTime.now();
const isLastDayOfMonth = now.endOf("month").day === now.day;
+ const isLastDayOfYear = now.endOf("year").day === now.day;
expect(now.plus({ days: 1 }).toRelativeCalendar()).toBe(
+ isLastDayOfYear ? "next year" :
isLastDayOfMonth ? "next month" : "tomorrow"
);
});
Reported by Debian: https://bugs.debian.org/109810