mirror of
https://github.com/MichMich/MagicMirror.git
synced 2026-06-15 12:16:17 +00:00
9fe7d1eb75
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/ ```