New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

multiple-cucumber-html-reporter

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multiple-cucumber-html-reporter - npm Package Compare versions

Comparing version 1.11.2 to 1.11.3

7

CHANGELOG.md
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)

2

lib/generate-report.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc