(option: Option.Option<A>, ..._: Array<never>)
| 122 | |
| 123 | export async function throwsAsync( |
| 124 | thunk: () => Promise<void>, |
| 125 | error?: Error | ((u: unknown) => undefined), |
| 126 | ..._: Array<never> |
| 127 | ) { |
| 128 | try { |
| 129 | await thunk() |
no test coverage detected
searching dependent graphs…