(message: string)
| 28 | */ |
| 29 | // oxlint-disable-next-line executor/no-error-constructor, executor/no-redundant-error-factory -- boundary: fixture for the raw-Error adapter under test |
| 30 | const rawError = (message: string): Error => new Error(message); |
| 31 | |
| 32 | const captureReports = (): { |
| 33 | readonly calls: Array<{ error: unknown; context: FrontendErrorContext }>; |
no outgoing calls
no test coverage detected