karma-effroi
Adapter for the effroi UI testing framework.
Installation
Very early alpha version, many changes on the API can be expectedThe easiest way is to keep
karma-effroi
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.10",
"karma-effroi": "~0.0"
}
}
You can simple do it by:
npm install karma-effroi --save-dev
Configuration
// karma.conf.js
module.exports = function(config) {
config.set({
frameworks: ['effroi'],
files: [
'*.js'
]
});
};
For more information on Karma see the homepage.