qunit-extras

3.0.0 • Public • Published

QUnit Extras v3.0.0

Extends QUnit with extra features and CLI support.

Usage

// Load QUnit and install extras.
var QUnit = require('qunit-extras');
 
// Set the number of retries an async tests may attempt.
QUnit.config.asyncRetries = 10;
 
// Excuse tests.
QUnit.config.excused = {
  // Specify the module name.
  'qunit module': {
    // Excuse individual asserts in a test.
    'a qunit test': [
      // Excuse by assert message.
      'assert message',
      // Excuse by expected result.
      '[1,2,3]',
      // Excuse by error indicator.
      'Died on test #1',
    ],
    // Excuse an entire test.
    'another qunit test': true
  }
};

Support

Tested in Node.js 4-6.

Readme

Keywords

Package Sidebar

Install

npm i qunit-extras

Weekly Downloads

536

Version

3.0.0

License

MIT

Last publish

Collaborators

  • jdalton