()
| 4302 | } |
| 4303 | |
| 4304 | function mockEventId(): string { |
| 4305 | const bytes = new Uint8Array(32); |
| 4306 | crypto.getRandomValues(bytes); |
| 4307 | return Array.from(bytes, (b) => b.toString(16).padStart(2, "0")).join(""); |
| 4308 | } |
| 4309 | |
| 4310 | function createMockEvent( |
| 4311 | kind: number, |
no test coverage detected