Helper functions for using QUnit as if it was ava/ava-spec.
npm install --save-dev qunit-ava-spec
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
.
MIT © Fabio Spampinato