New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

benderjs-qunit

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

benderjs-qunit

Adapter for QUnit testing framework for Bender.js

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

benderjs-qunit

Adapter for QUnit testing framework for Bender.js.

Installation

npm install benderjs-qunit

Usage

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;

Features

  • single test execution

Todo

  • API to ignore a specific test/define a list of test names to ignore from the test file
  • ???

License

MIT, for license details see: LICENSE.md.

Keywords

bender

FAQs

Package last updated on 20 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts