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'],
tests: {...}
};
module.exports = config;
Set jasmine
as a framework
for entire project or a specific tests group:
var config = {
applications: {...}
browsers: [...],
framework: 'jasmine',
plugins: ['benderjs-jasmine'],
tests: {
Foo: {
basePath: '',
framework: 'jasmine'
paths: [...]
}
}
};
module.exports = config;
Features
License
MIT, for license details see: LICENSE.md.