variable skip

Registers a skipped test. Equivalent to test.skip. The test body is never executed and the test is reported as ignored by Deno's runner.

Examples

Example 1

import { module, skip } from "qunitx";

module("Math", () => {
  skip("addition is not yet implemented", (assert) => {
    assert.equal(1 + 1, 2);
  });
});

Usage

import { skip } from ".";