Socket
Socket
Sign inDemoInstall

karma-spec-reporter

Package Overview
Dependencies
Maintainers
3
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-spec-reporter - npm Package Compare versions

Comparing version 0.0.26 to 0.0.27

License.md

3

index.js

@@ -140,2 +140,5 @@ require('colors');

this.writeSpecMessage(this.USE_COLORS ? this.prefixes.failure.red : this.prefixes.failure).apply(this, arguments);
if (reporterCfg.failFast) {
throw new Error('Fail fast active for tests, exiting(failFast option is enabled)');
}
};

@@ -142,0 +145,0 @@

2

package.json
{
"name": "karma-spec-reporter",
"version": "0.0.26",
"version": "0.0.27",
"description": "A Karma plugin. Report all spec-results to console (like mocha's spec reporter).",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -35,8 +35,9 @@ # karma-spec-reporter

specReporter: {
maxLogLines: 5, // limit number of lines logged per test
suppressErrorSummary: true, // do not print error summary
suppressFailed: false, // do not print information about failed tests
suppressPassed: false, // do not print information about passed tests
suppressSkipped: true, // do not print information about skipped tests
showSpecTiming: false // print the time elapsed for each spec
maxLogLines: 5, // limit number of lines logged per test
suppressErrorSummary: true, // do not print error summary
suppressFailed: false, // do not print information about failed tests
suppressPassed: false, // do not print information about passed tests
suppressSkipped: true, // do not print information about skipped tests
showSpecTiming: false, // print the time elapsed for each spec
failFast: true // test would finish with error when a first fail occurs.
},

@@ -43,0 +44,0 @@ plugins: ["karma-spec-reporter"],

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc