Skip to content

A Karma plugin. Dynamically displays tests results at debug.html page

License

Notifications You must be signed in to change notification settings

dimified/karma-jasmine-html-reporter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

karma-jasmine-html-reporter

Reporter that dynamically shows tests results at debug.html page. Jasmine 1.3 is not supported.

alt tag

You can also run describe block, or single test.

alt tag

Installation

The easiest way is to keep karma-jasmine-html-reporter as a devDependency in your package.json.

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-jasmine-html-reporter": "~0.1"
  }
}

You can simple do it by:

npm install karma-jasmine-html-reporter --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({

    reporters: ['html']

  });
};

You can pass list of reporters as a CLI argument too:

karma start --reporters html

About

A Karma plugin. Dynamically displays tests results at debug.html page

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.4%
  • CSS 19.6%