karma-mocha-reporter
Advanced tools
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 @@ |
{ | ||
"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 |
23319
341
265