Adapter for the effroi UI testing framework.
Very early alpha version, many changes on the API can be expected
The 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
// karma.conf.js
module.exports = function(config) {
config.set({
frameworks: ['effroi'],
files: [
'*.js'
]
});
};
For more information on Karma see the homepage.