()
| 9 | // Helper to generate test IDs and timestamps |
| 10 | let idCounter = 0; |
| 11 | const testId = () => `test-id-${++idCounter}`; |
| 12 | const testTime = Date.now(); |
| 13 | |
| 14 | // Helper to create a field with all required properties |
no outgoing calls
no test coverage detected