(v)
| 7 | const onRejected = (r) => `R[${r}]` |
| 8 | |
| 9 | const onFulFilledToPromiseState = (v) => PromiseState.resolve(`F[${v}]`) |
| 10 | const onRejectedToPromiseState = (r) => PromiseState.resolve(`R[${r}]`) |
| 11 | |
| 12 | describe('resolve', () => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…