1.0.0 • Published 9 years ago
karma-ng-scenario v1.0.0
karma-ng-scenario 
Adapter for the AngularJS Scenario Runner.
If you are starting a new project, we recommend using Protractor for e2e testing AngularJS projects.
Installation
The easiest way is to keep karma-ng-scenario as a devDependency in your package.json.
{
  "devDependencies": {
    "karma": "~0.10",
    "karma-ng-scenario": "~0.1"
  }
}You can simple do it by:
npm install karma-ng-scenario --save-devConfiguration
Following code shows the default configuration...
// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['ng-scenario'],
    files: [
      '*.js'
    ]
  });
};For more information on Karma see the homepage.