(s: string)
| 202 | |
| 203 | it("prev chooses the later occurrence in DST fall-back", () => { |
| 204 | const make = (s: string) => DateTime.makeZonedFromString(s).pipe(Option.getOrThrow) |
| 205 | const tz = "Europe/Berlin" |
| 206 | const cron = Cron.unsafeParse("0 30 2 * * *", tz) |
| 207 | const before = make("2024-10-27T03:30:00.000+01:00[Europe/Berlin]") |