Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

qunit-ava-spec

Helper functions for using QUnit as if it was ava/ava-spec.

qunit, qunit-plugin, ava, ava-spec

readme

QUnit AVA Spec

Helper functions for using QUnit as if it was ava/ava-spec.

Install

npm install --save-dev qunit-ava-spec

Usage

Load it after having loaded QUnit:

<script src="./node_modules/qunit-ava-spec/dist/index.js"></script>

Then use it like you would use ava:

test ( 'Foo', t => {
  t.is ( true, false );
});

Or ava-spec:

describe ( 'Foo', it => {
  it ( 'does something useful', t => {
    t.true ( false );
  });
});

If you need hooks you can pass them as a second optional argument to describe.

License

MIT © Fabio Spampinato