karma-benchmarkjasmine
v0.0.8
Published
A Karma plugin - adapter for Jasmine based benchmarking tool.This repository is forked from karma-jasmine
Downloads
1
Maintainers
Readme
karma-jasmine
Adapter for the Jasmine testing framework.
Installation
Jasmine 1.3 (docs)
The easiest way is to keep karma-jasmine
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.10",
"karma-jasmine": "~0.1.0"
}
}
You can simple do it by:
npm install karma-jasmine --save-dev
Jasmine 2.0 (docs)
The easiest way is to keep karma-jasmine
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.10",
"karma-jasmine": "~0.2.0"
}
}
You can simple do it by:
npm install karma-jasmine@2_0 --save-dev
Configuration
// karma.conf.js
module.exports = function(config) {
config.set({
frameworks: ['jasmine'],
files: [
'*.js'
]
});
};
For more information on Karma see the homepage.