()
| 117 | * @returns The hooks configuration |
| 118 | */ |
| 119 | export function getHooksConfigFromSnapshot(): HooksSettings | null { |
| 120 | if (initialHooksConfig === null) { |
| 121 | captureHooksConfigSnapshot() |
| 122 | } |
| 123 | return initialHooksConfig |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Reset the hooks configuration snapshot (useful for testing) |
no test coverage detected