feat: Adds yearly calendared events with recurrences (#2177)

This commit is contained in:
Kamron Batman 2025-05-06 23:52:49 -07:00 committed by GitHub
parent 4beda6a29d
commit f02403a374
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 232 additions and 55 deletions

View file

@ -81,10 +81,11 @@ public class EventSchedulerTests
() => called = true
);
Assert.Equal(Core._now, evt.NextOccurrence);
Timer.Slice(8);
Assert.True(called);
Assert.Equal(Core._now, evt.NextOccurrence);
Assert.Equal(DateTime.MaxValue, evt.NextOccurrence);
evt.Cancel();
}