diff --git a/tests/unit/services/reminders.test.ts b/tests/unit/services/reminders.test.ts index 3f7b878..97caef9 100644 --- a/tests/unit/services/reminders.test.ts +++ b/tests/unit/services/reminders.test.ts @@ -131,8 +131,8 @@ describe('RemindersService', () => { [{ user_id: USER, assigned_by: USER }] ); - // Lunes (Mon) 2025-09-08 09:00 local (07:00Z) -> antes de hora: no envía - await RemindersService.runOnce(new Date('2025-09-08T07:00:00.000Z')); + // Lunes (Mon) 2025-09-08 07:00 local (05:00Z) -> antes de hora: no envía + await RemindersService.runOnce(new Date('2025-09-08T05:00:00.000Z')); expect(countQueued()).toBe(0); expect(getLastReminded()).toBeNull();