0.3.1 • Published 9 years ago

benderjs-jasmine v0.3.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

benderjs-jasmine

Adapter for Jasmine testing framework for Bender.js.

Installation

npm install benderjs-jasmine

Usage

Add benderjs-jasmine to the plugins array in the bender.js configuration file:

var config = {
    applications: {...}

    browsers: [...],

    plugins: ['benderjs-jasmine'], // load the plugin

    tests: {...}
};

module.exports = config;

Set jasmine as a framework for entire project or a specific tests group:

var config = {
    applications: {...}

    browsers: [...],

    framework: 'jasmine', // use for entire project

    plugins: ['benderjs-jasmine'],

    tests: {
        Foo: {
            basePath: '',
            framework: 'jasmine' // or use for a specific tests group
            paths: [...]
        }
    }
};

module.exports = config;

Features

  • single test execution

License

MIT, for license details see: LICENSE.md.

0.3.1

9 years ago

0.3.0

9 years ago

0.2.5

9 years ago

0.2.4

9 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago