karma-mocha-reporter
Advanced tools
Comparing version 1.1.5 to 1.1.6
@@ -262,3 +262,3 @@ 'use strict'; | ||
if (suite.hasOwnProperty(description) && suite[description].type === 'it') { | ||
if (suite.hasOwnProperty(description) && suite[description].type === 'it' && self.numberOfBrowsers === 1) { | ||
item = {}; | ||
@@ -287,2 +287,4 @@ description += ' '; | ||
item.skipped = result.skipped; | ||
item.visited = item.visited || []; | ||
item.visited.push(browser.name); | ||
self.netTime += result.time; | ||
@@ -289,0 +291,0 @@ |
{ | ||
"name": "karma-mocha-reporter", | ||
"description": "Karma reporter with mocha style logging.", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"homepage": "http://www.litixsoft.de/modules-karmamochareporter", | ||
@@ -53,3 +53,3 @@ "author": "Litixsoft GmbH <info@litixsoft.de> (http://www.litixsoft.de)", | ||
"grunt-contrib-copy": "^0.8.2", | ||
"grunt-contrib-jshint": "^0.11.3", | ||
"grunt-contrib-jshint": "^1.0.0", | ||
"grunt-karma": "^0.12.1", | ||
@@ -62,7 +62,7 @@ "grunt-shell": "^1.1.2", | ||
"karma-ie-launcher": "*", | ||
"karma-jasmine": "^0.3.6", | ||
"karma-jasmine": "^0.3.7", | ||
"karma-opera-launcher": "*", | ||
"karma-phantomjs-launcher": "0.2.2", | ||
"karma-phantomjs-launcher": "1.0.0", | ||
"karma-safari-launcher": "*", | ||
"phantomjs": "1.9.19" | ||
"phantomjs-prebuilt": "2.1.4" | ||
}, | ||
@@ -69,0 +69,0 @@ "dependencies": { |
@@ -19,3 +19,3 @@ # karma-mocha-reporter | ||
"karma": "^0.13", | ||
"karma-mocha-reporter": "^1.1.0" | ||
"karma-mocha-reporter": "^1.1.6" | ||
} | ||
@@ -171,2 +171,6 @@ } | ||
## Release History | ||
### v1.1.6 | ||
* Fix error that reporter output was truncated when running multiple browsers | ||
* Reverts part of the fix from v1.1.4 (identical it blocks within the same describe block are only printed correctly when the test are run in one browser) | ||
### v1.1.5 | ||
@@ -173,0 +177,0 @@ * Show error message when the karma runner ends with an error |
24328
353
272