rohitpaulk / qunit-assertions-extra

Collection of helpful assertions for use with qunit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

qunit-assertions-extra

A Collection of helpful assertions for use with qunit.

assert.contains('Hello there!', 'Hello');
assert.contains([1, 3], 3);

assert.matches('Hello there!', /Hello/);

Installation

yarn add --dev qunit-assertions-extra
npm install --save-dev qunit-assertions-extra

Then, wherever qunit tests are initialized, add

import 'qunit-assertions-extra';

This will also enable the tsserver to provide intellisense for assert.

Ember Projects

Requirements: ember-auto-import and add the above import to your tests/test-helper.js file.

Example:

import Application from '../app';
import config from '../config/environment';
import { setApplication } from '@ember/test-helpers';
import { start } from 'ember-qunit';

import 'qunit-assertions-extra';

setApplication(Application.create(config.APP));

start();

Contributing

See the Contributing guide for details.

Prior Art

  • qunit-dom much of the config for this repo was taken from qunit-dom.

License

This project is licensed under the MIT License.

About

Collection of helpful assertions for use with qunit

License:MIT License


Languages

Language:TypeScript 83.0%Language:JavaScript 17.0%