multiple-cucumber-html-reporter
Advanced tools
Comparing version 1.11.2 to 1.11.3
CHANGELOG | ||
========= | ||
<a name="1.11.3"></a> | ||
## [1.11.3](https://github.com/wswebcreation/multiple-cucumber-html-reporter/compare/v1.11.2...v1.11.3) (2018-10-02) | ||
### Fix | ||
* **fix:** Update template condition to not suppress output for hidden steps w/html embed, related to [59](https://github.com/wswebcreation/multiple-cucumber-html-reporter/pull/59), tnx to [Yaron Assa](https://github.com/yaronassa) | ||
* **fix:** Replaced json.parse with json.stringify at line 329 of `generate-report.js` for step embeddings, tnx to [Marius](https://github.com/CTMarius) | ||
<a name="1.11.2"></a> | ||
@@ -5,0 +12,0 @@ ## [1.11.2](https://github.com/wswebcreation/multiple-cucumber-html-reporter/compare/v1.11.1...v1.11.2) (2018-08-18) |
@@ -329,3 +329,3 @@ 'use strict'; | ||
if (embedding.mime_type === 'application/json' || embedding.media && embedding.media.type === 'application/json') { | ||
step.text = (step.text ? step.text : []).concat([JSON.parse(embedding.data)]); | ||
step.text = (step.text ? step.text : []).concat([JSON.stringify(embedding.data)]); | ||
} else if (embedding.mime_type === 'text/html' || (embedding.media && embedding.media.type === 'text/html')) { | ||
@@ -332,0 +332,0 @@ step.html = (step.html ? step.html : []).concat([ |
{ | ||
"name": "multiple-cucumber-html-reporter", | ||
"version": "1.11.2", | ||
"version": "1.11.3", | ||
"description": "Generate beautifull cucumberjs reports for multiple instances (browsers / devices)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
1962092