Adapter for QUnit testing framework for Bender.js.
npm install benderjs-qunit
Add benderjs-qunit to the plugins array in the bender.js configuration file:
var config = {
    applications: {...}
    browsers: [...],
    plugins: ['benderjs-qunit'], // load the plugin
    tests: {...}
};
module.exports = config;Set qunit as a framework for entire project or a specific tests group:
var config = {
    applications: {...}
    browsers: [...],
    framework: 'qunit', // use for entire project
    plugins: ['benderjs-qunit'],
    tests: {
        Foo: {
            basePath: '',
            framework: 'qunit' // use for a specific tests group
            paths: [...]
        }
    }
};
module.exports = config;- single test execution
- API to ignore a specific test/define a list of test names to ignore from the test file
- ???
MIT, for license details see: LICENSE.md.