* Skips a given number of tests with a passing result. * * @private * @param {Object} assert The QUnit assert object. * @param {number} [count=1] The number of tests to skip.
(assert, count)
| 494 | * @param {number} [count=1] The number of tests to skip. |
| 495 | */ |
| 496 | function skipAssert(assert, count) { |
| 497 | count || (count = 1); |
| 498 | while (count--) { |
| 499 | assert.ok(true, class="st">'test skipped'); |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | /** |
| 504 | * Converts `array` to an `arguments` object. |