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

protractor-fail-fast

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

protractor-fail-fast - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

4

CHANGELOG.md
# Changelog
## 3.0.2
##### Fixes
* Catch error when attempting to remove already removed fail file.
## 3.0.0/3.0.1

@@ -4,0 +8,0 @@ NOTE: `3.0.1` technically contains breaking changes with respect to `3.0.0`.

@@ -69,4 +69,10 @@ 'use strict';

function deleteFailFile() {
(0, _fs.unlinkSync)(FAIL_FILE);
try {
(0, _fs.unlinkSync)(FAIL_FILE);
} catch (err) {
if (err.code !== 'ENOENT') {
throw err;
}
}
}
module.exports = exports['default'];

2

package.json
{
"name": "protractor-fail-fast",
"version": "3.0.1",
"version": "3.0.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/protractor-fail-fast.js",

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