🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

chai-qunit

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chai-qunit

chai integrations for qunit

0.1.0
latest
Source
npm
Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

Chai QUnit Build Status

Chai-QUnit is a layer on top of QUnit using the chai assertion library.

Installation

bower install --save-dev chai-qunit

or

npm install --save-dev chai-qunit

Then include it using a script tag:

<script type="text/javascript" src="/path/to/bower_components/chai-qunit/dist/chai-qunit.js">
  chaiQUnit.globalize();
</script>

or use your favorite module system (AMD, CJS, ES6):

var chaiQUnit = require('chai-qunit');
chaiQUnit.globalize();

Why

Chai tends to have better error messages if you don't provide one yourself, and has a bunch of other useful helpers(like include, match, etc.) and a robust plugin system for creating your own.

Usage

See the Chai Docs for more usage information, but this implementation currently uses the assert syntax exposed as globals (expect and should are planned to be supported soon). For example, with chai standalone, you would say assert.matches("hello", /hello/i). In chai-qunit, you would say matches("hello", /hello/i).

Test Example


module("My Module");

test("title matches something", function(){
  var title = "A Book about Nothing";
  matches(title, /book/i);
});

License

MIT. See the LICENSE file included with this repository.

Keywords

chai

FAQs

Package last updated on 12 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts