variable default

The default export provides the full QUnitX API as a single object.

Examples

Example 1

import qunitx from "qunitx";

qunitx.module("Math", () => {
  qunitx.test("addition", (assert) => {
    assert.equal(1 + 1, 2);
  });
});

Properties

Usage

import mod from ".";