(realIt)
| 5 | * Check test-yield.js for how-to. |
| 6 | */ |
| 7 | export function installYieldIt(realIt) { |
| 8 | it = enableYield.bind(null, realIt); // eslint-disable-line no-native-reassign |
| 9 | it./*OK*/ only = enableYield.bind(null, realIt.only); |
| 10 | it.skip = realIt.skip; |
| 11 | } |
| 12 | |
| 13 | function enableYield(fn, message, runnable) { |
| 14 | if ( |
no outgoing calls
no test coverage detected