New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

karma-mocha-reporter

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-mocha-reporter - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

10

index.js

@@ -259,3 +259,11 @@ 'use strict';

var item = suite[description] || {};
var item;
if (suite.hasOwnProperty(description) && suite[description].type === 'it') {
item = {};
description += ' ';
} else {
item = suite[description] || {};
}
suite[description] = item;

@@ -262,0 +270,0 @@

6

package.json
{
"name": "karma-mocha-reporter",
"description": "Karma reporter with mocha style logging.",
"version": "1.1.3",
"version": "1.1.4",
"homepage": "http://www.litixsoft.de/modules-karmamochareporter",

@@ -56,3 +56,3 @@ "author": "Litixsoft GmbH <info@litixsoft.de> (http://www.litixsoft.de)",

"grunt-shell": "^1.1.2",
"jasmine-core": "2.3.4",
"jasmine-core": "2.4.1",
"karma-chrome-launcher": "*",

@@ -64,3 +64,3 @@ "karma-detect-browsers": "^2.0.2",

"karma-opera-launcher": "*",
"karma-phantomjs-launcher": "0.2.1",
"karma-phantomjs-launcher": "0.2.2",
"karma-safari-launcher": "*",

@@ -67,0 +67,0 @@ "phantomjs": "1.9.19"

@@ -170,2 +170,5 @@ # karma-mocha-reporter

## Release History
### v1.1.4
* Print specs correctly when names of it blocks are identical within the same describe block
### v1.1.3

@@ -172,0 +175,0 @@ * Fix for divider is always "=" even the user set divider in config

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