MCPcopy
hub / github.com/lodash/lodash / skipAssert

Function skipAssert

test/test.js:496–501  ·  test/test.js::skipAssert

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 1

test.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected