html-reporter
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="2.0.2"></a> | ||
## [2.0.2](https://github.com/gemini-testing/html-reporter/compare/v2.0.1...v2.0.2) (2018-02-04) | ||
### Bug Fixes | ||
* save image asynchronously in hermione report ([#39](https://github.com/gemini-testing/html-reporter/issues/39)) ([45d7e61](https://github.com/gemini-testing/html-reporter/commit/45d7e61)) | ||
<a name="2.0.1"></a> | ||
@@ -7,0 +17,0 @@ ## [2.0.1](https://github.com/gemini-testing/html-reporter/compare/v2.0.0...v2.0.1) (2018-01-30) |
@@ -67,3 +67,3 @@ 'use strict'; | ||
return src | ||
? utils.copyImage(src, utils.getCurrentAbsolutePath(testResult, pluginConfig.path)) | ||
? utils.copyImageAsync(src, utils.getCurrentAbsolutePath(testResult, pluginConfig.path)) | ||
: saveScreenshot(testResult.screenshot, utils.getCurrentAbsolutePath(testResult, pluginConfig.path)); | ||
@@ -70,0 +70,0 @@ } |
{ | ||
"name": "html-reporter", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Plugin for gemini and hermione which is intended to aggregate the results of tests running into html report", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -49,7 +49,2 @@ 'use strict'; | ||
function copyImage(srcPath, destPath) { | ||
return makeDirFor(destPath) | ||
.then(() => fs.copySync(srcPath, destPath)); | ||
} | ||
function copyImageAsync(srcPath, destPath) { | ||
@@ -98,3 +93,2 @@ return makeDirFor(destPath) | ||
copyImage, | ||
copyImageAsync, | ||
@@ -101,0 +95,0 @@ saveDiff, |
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
409682
2751