2.0.0 • Published 1 year ago

qunit-ava-spec v2.0.0

Weekly downloads
3
License
-
Repository
github
Last release
1 year ago

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