0.0.8 • Published 10 years ago

karma-benchmarkjasmine v0.0.8

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

karma-jasmine Build Status

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.

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago