# qunit-ava-spec **Repository Path**: mirrors_Krinkle/qunit-ava-spec ## Basic Information - **Project Name**: qunit-ava-spec - **Description**: Helper functions for using QUnit as if it was ava/ava-spec. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-22 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # QUnit AVA Spec Helper functions for using [QUnit](https://api.qunitjs.com/) as if it was [ava](https://github.com/avajs/ava)/[ava-spec](https://github.com/sheerun/ava-spec). ## Install ```sh npm install --save-dev qunit-ava-spec ``` ## Usage Load it after having loaded QUnit: ```html ``` Then use it like you would use [ava](https://github.com/avajs/ava): ```js test ( 'Foo', t => { t.is ( true, false ); }); ``` Or [ava-spec](https://github.com/sheerun/ava-spec): ```js describe ( 'Foo', it => { it ( 'does something useful', t => { t.true ( false ); }); }); ``` If you need [hooks](https://api.qunitjs.com/QUnit/module) you can pass them as a second optional argument to `describe`. ## License MIT © Fabio Spampinato