mirror of
https://github.com/MichMich/MagicMirror.git
synced 2026-04-24 06:47:07 +00:00
While looking into #4053 I noticed that one of the calendar tests had stopped working. The cause was simple: the test had `2026-03-10` hardcoded, and since that date is now in the past, the event was silently filtered out by `includePastEvents: false`. Instead of bumping the date to some future value (which would only delay the same problem), I made it relative so it always lies in the future. Command to test: ```bash npx vitest run tests/unit/modules/default/calendar/ ```