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

cucumber-html-reporter

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cucumber-html-reporter - npm Package Compare versions

Comparing version 0.3.7 to 0.3.8

5

lib/reporter.js

@@ -5,6 +5,5 @@ 'use strict';

var _ = require('lodash');
var fs = require('fs');
var fs = require('fs-extra');
var path = require('path');
var jsonDir = require('./jsonDir');
var nodeFs = require('node-fs');
var open = require('open');

@@ -58,3 +57,3 @@ var searchFileUp = require('./searchFileUp');

if (!fs.existsSync(options.output)) {
nodeFs.mkdirSync(path.dirname(options.output), parseInt('0777', 8), true);
fs.mkdirsSync(path.dirname(options.output));
}

@@ -61,0 +60,0 @@ };

2

lib/searchFileUp.js
'use strict';
var fs = require('fs');
var fs = require('fs-extra');
var path = require('path');

@@ -5,0 +5,0 @@

{
"name": "cucumber-html-reporter",
"version": "0.3.7",
"version": "0.3.8",
"description": "Generates Cucumber HTML reports in three different themes",

@@ -59,13 +59,13 @@ "main": "index.js",

"dependencies": {
"chai": "^3.5.0",
"find": "^0.2.7",
"fs-extra": "^2.0.0",
"js-base64": "^2.1.9",
"jsonfile": "^2.3.1",
"lodash": "^4.17.2",
"node-fs": "^0.1.7",
"open": "0.0.5"
},
"devDependencies": {
"chai": "^3.5.0",
"cucumber": "^1.3.1"
}
}

@@ -217,3 +217,3 @@ cucumber-html-reporter

## Changelog
## Changelog

@@ -220,0 +220,0 @@ [changelog][9]

@@ -13,6 +13,6 @@ $(document).ready(function() {

$(this).text('Screenshot +');
$(this).siblings('a.screenshot').find('img').hide();
$(this).next('a.screenshot').find('img').hide();
} else {
$(this).text('Screenshot -');
$(this).siblings('a.screenshot').find('img').show();
$(this).next('a.screenshot').find('img').show();
}

@@ -19,0 +19,0 @@ });

'use strict';
var chai = require('chai');
var fs = require('fs');
var fs = require('fs-extra');
should = chai.should();

@@ -5,0 +5,0 @@ var path = require('path');

@@ -6,3 +6,3 @@ 'use strict';

var path = require('path');
var fs = require('fs');
var fs = require('fs-extra');
var find = require('find');

@@ -9,0 +9,0 @@

Sorry, the diff of this file is not supported yet

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