(date: Date)
| 7 | const tz = 'Etc/UTC'; |
| 8 | const ONE_DAY_MS = 24 * 60 * 60 * 1000; |
| 9 | const toLocal = (date: Date): string => |
| 10 | dateFormatInTimezone(date, "yyyy-MM-dd'T'HH:mm", tz); |
| 11 | |
| 12 | describe('validatePostScheduledStart', () => { |
| 13 | it('returns an ISO string for a valid future time within the limit', () => { |
no test coverage detected