Socket
Socket
Sign inDemoInstall

karma-jasmine-html-reporter

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-jasmine-html-reporter

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


Version published
Weekly downloads
1.7M
decreased by-0.67%
Maintainers
1
Weekly downloads
 
Created

What is karma-jasmine-html-reporter?

The karma-jasmine-html-reporter npm package is a plugin for the Karma test runner that provides a visual HTML report of the results of Jasmine tests. It allows developers to see their test results in a more readable and user-friendly format directly in the browser.

What are karma-jasmine-html-reporter's main functionalities?

Visual HTML Test Results

This feature allows you to see your Jasmine test results in a formatted HTML output. The code sample shows how to configure Karma to use the karma-jasmine-html-reporter by adding 'kjhtml' to the list of reporters and including the plugin in the Karma configuration.

module.exports = function(config) {
  config.set({
    reporters: ['progress', 'kjhtml'],
    plugins: [
      require('karma-jasmine'),
      require('karma-chrome-launcher'),
      require('karma-jasmine-html-reporter')
    ]
  });
};

Debugging Support

The reporter supports interactive debugging by leaving the Jasmine Spec Runner output visible in the browser. The 'clearContext' option is set to false to keep the HTML output visible, allowing developers to inspect and debug directly.

module.exports = function(config) {
  config.set({
    reporters: ['kjhtml'],
    client: {
      clearContext: false // leave Jasmine Spec Runner output visible in browser
    }
  });
};

Other packages similar to karma-jasmine-html-reporter

Keywords

FAQs

Package last updated on 09 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc