(hash: string)
| 17 | }); |
| 18 | |
| 19 | const workerEvent = (hash: string): GroupingEvent => ({ |
| 20 | culprit: `timeoutOrElse(execution-rate-limit-${hash})`, |
| 21 | exception: { |
| 22 | values: [ |
| 23 | { |
| 24 | type: "GateCheckTimeoutError", |
| 25 | value: "balance check timed out", |
| 26 | stacktrace: { frames: [workerFrame(hash)] }, |
| 27 | }, |
| 28 | ], |
| 29 | }, |
| 30 | }); |
| 31 | |
| 32 | test("stripContentHashes rewrites chunk hashes and leaves everything else alone", () => { |
| 33 | expect(stripContentHashes("/assets/execution-rate-limit-BAuwphPA.js")).toBe( |
no test coverage detected