(event: Sentry.Event)
| 120 | } |
| 121 | |
| 122 | export function __redactEventForTests(event: Sentry.Event): Sentry.Event { |
| 123 | const clone = structuredClone(event); |
| 124 | return redactEvent(clone as Sentry.ErrorEvent) as Sentry.Event; |
| 125 | } |
| 126 | |
| 127 | export function __redactLogForTests(log: Sentry.Log): Sentry.Log | null { |
| 128 | const clone = structuredClone(log); |
no test coverage detected