| 92 | } |
| 93 | |
| 94 | class HookConfig { |
| 95 | constructor(hook) { |
| 96 | this.hook = hook |
| 97 | } |
| 98 | |
| 99 | retry(n) { |
| 100 | this.hook.retry(n) |
| 101 | return this |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | export { |
| 106 | BeforeHook, |
nothing calls this directly
no outgoing calls
no test coverage detected