jest-teamcity
Advanced tools
Comparing version 1.2.2 to 1.3.0
#CHANGELOG | ||
## 1.3.0 - 2017-06-27 | ||
### Fixed | ||
- Fixed issue with doing exit(1) in case of failed test suites | ||
## 1.2.1, 1.2.2 - 2017-06-26 | ||
@@ -4,0 +8,0 @@ ### Removed |
@@ -10,7 +10,7 @@ /** | ||
module.exports = (result) => { | ||
if (!process.env.TEAMCITY_VERSION) { | ||
return result; | ||
if (process.env.TEAMCITY_VERSION) { | ||
formatter.formatReport(result.testResults, process.cwd()); | ||
} | ||
return formatter.formatReport(result.testResults, process.cwd()); | ||
return result; | ||
}; |
{ | ||
"name": "jest-teamcity", | ||
"version": "1.2.2", | ||
"version": "1.3.0", | ||
"description": "Teamcity Reporter for Jest Testing framework", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/itereshchenkov/jest-teamcity", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16704