(item, step)
| 146 | } |
| 147 | |
| 148 | function scheduleEmailCleanup(item, step) { |
| 149 | setTimeout(() => { |
| 150 | Promise.resolve(deleteEmail(item, step)).catch(() => { |
| 151 | // Cleanup is best effort only and must never affect the main verification flow. |
| 152 | }); |
| 153 | }, 0); |
| 154 | } |
| 155 | |
| 156 | // ============================================================ |
| 157 | // Email Polling |
no test coverage detected