karma-mocha-reporter
Advanced tools
Comparing version 0.2.2 to 0.2.3
13
index.js
@@ -24,13 +24,2 @@ 'use strict'; | ||
/** | ||
* Format the text with color when the colored output is enabled in the karma config. | ||
* | ||
* @param {!string} text The text to format. | ||
* @param {!string} color The color or format. | ||
* @returns {string} | ||
*/ | ||
// function colorfy (text, color) { | ||
// return config.colors === true ? text[color] : text; | ||
// } | ||
/** | ||
* Returns a formatted time interval | ||
@@ -256,3 +245,3 @@ * | ||
self._browsers.push(browser); | ||
self.numberOfBrowsers += 1; | ||
self.numberOfBrowsers = self._browsers.length; | ||
}; | ||
@@ -259,0 +248,0 @@ |
{ | ||
"name": "karma-mocha-reporter", | ||
"description": "Karma reporter with mocha style logging.", | ||
"version": "0.2.2", | ||
"homepage": "https://github.com/litixsoft/karma-mocha-reporter", | ||
"author": { | ||
"name": "Litixsoft GmbH", | ||
"email": "info@litixsoft.de" | ||
}, | ||
"version": "0.2.3", | ||
"homepage": "http://www.litixsoft.de/modules-karmamochareporter", | ||
"author": "Litixsoft GmbH <info@litixsoft.de> (http://www.litixsoft.de)", | ||
"maintainers": [ | ||
{ | ||
"name": "Timo Liebetrau", | ||
"email": "t.liebetrau@litixsoft.de" | ||
}, | ||
{ | ||
"name": "Marco Kannenberg", | ||
"email": "m.kannenberg@litixsoft.de" | ||
}, | ||
{ | ||
"name": "Andreas Krummsdorf", | ||
"email": "a.krummsdorf@litixsoft.de" | ||
}, | ||
{ | ||
"name": "Sven Bernstein", | ||
"email": "s.bernstein@litixsoft.de" | ||
}, | ||
{ | ||
"name": "Thomas Scheibe", | ||
"email": "th.scheibe@litixsoft.de" | ||
} | ||
"Timo Liebetrau <t.liebetrau@litixsoft.de>", | ||
"Marco Kannenberg <m.kannenberg@litixsoft.de>", | ||
"Sven Bernstein <s.bernstein@litixsoft.de>", | ||
"Dominic Sachs <d.sachs@litixsoft.de>", | ||
"Thomas Scheibe <th.scheibe@litixsoft.de>", | ||
"Mike Alig <m.alig@litixsoft.de>", | ||
"Joerg Raschke <j.Raschke@litixsoft.de>", | ||
"Andreas Krummsdorf <a.krummsdorf@litixsoft.de>" | ||
], | ||
@@ -51,7 +36,5 @@ "repository": { | ||
], | ||
"readmeFilename": "README.md", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "grunt test", | ||
"demo": "grunt demo --force" | ||
"test": "grunt test" | ||
}, | ||
@@ -62,11 +45,12 @@ "peerDependencies": { | ||
"devDependencies": { | ||
"grunt": "~0.4.2", | ||
"grunt-contrib-copy": "~0.5.0", | ||
"grunt-contrib-jshint": "~0.8.0", | ||
"grunt-karma": "~0.6.2", | ||
"karma-detect-browsers": "~0.1.2" | ||
"grunt": "^0.4.4", | ||
"grunt-contrib-copy": "^0.5.0", | ||
"grunt-contrib-jshint": "^0.10.0", | ||
"grunt-karma": "^0.8.2", | ||
"karma-detect-browsers": "^0.1.2", | ||
"karma-jasmine": "^0.1.5" | ||
}, | ||
"dependencies": { | ||
"chalk": "~0.4.0" | ||
"chalk": "^0.4.0" | ||
} | ||
} |
@@ -5,3 +5,3 @@ # karma-mocha-reporter | ||
> [![Build Status](https://travis-ci.org/litixsoft/karma-mocha-reporter.png?branch=master)](https://travis-ci.org/litixsoft/karma-mocha-reporter) [![david-dm](https://david-dm.org/litixsoft/karma-mocha-reporter.png)](https://david-dm.org/litixsoft/karma-mocha-reporter/) [![david-dm](https://david-dm.org/litixsoft/karma-mocha-reporter/dev-status.png)](https://david-dm.org/litixsoft/karma-mocha-reporter#info=devDependencies&view=table) | ||
> [![Build Status](https://travis-ci.org/litixsoft/karma-mocha-reporter.svg?branch=master)](https://travis-ci.org/litixsoft/karma-mocha-reporter) [![david-dm](https://david-dm.org/litixsoft/karma-mocha-reporter.svg)](https://david-dm.org/litixsoft/karma-mocha-reporter/) [![david-dm](https://david-dm.org/litixsoft/karma-mocha-reporter/dev-status.svg)](https://david-dm.org/litixsoft/karma-mocha-reporter#info=devDependencies&view=table) | ||
@@ -16,4 +16,4 @@ ## How does it look like | ||
"devDependencies": { | ||
"karma": "~0.10", | ||
"karma-mocha-reporter": "~0.2.0" | ||
"karma": "^0.12", | ||
"karma-mocha-reporter": "^0.2.0" | ||
} | ||
@@ -55,2 +55,5 @@ } | ||
## Release History | ||
### v0.2.3 | ||
* fix missing test results when singleRun = true | ||
### v0.2.2 | ||
@@ -72,3 +75,3 @@ * fix that skipped test where reported as failure | ||
## License | ||
Copyright (C) 2013 Litixsoft GmbH <info@litixsoft.de> | ||
Copyright (C) 2013-2014 Litixsoft GmbH <info@litixsoft.de> | ||
Licensed under the MIT license. | ||
@@ -75,0 +78,0 @@ |
Sorry, the diff of this file is not supported yet
91
14239
6
228
Updatedchalk@^0.4.0