* Check if `currentSubTest` is in the subset specified in the URL. * @param {number} currentSubTest * @returns {boolean}
(currentSubTest)
| 37 | * @returns {boolean} |
| 38 | */ |
| 39 | function shouldRunSubTest(currentSubTest) { |
| 40 | return currentSubTest >= subTestStart && currentSubTest <= subTestEnd; |
| 41 | } |
| 42 | var currentSubTest = 0; |
| 43 | /** |
| 44 | * Only test a subset of tests with, e.g., `?1-10` in the URL. |
no outgoing calls
no test coverage detected