Socket
Socket
Sign inDemoInstall

fast-fail

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fast-fail

A wrapper around the native test module that fails entirely after the first failure.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

fast-fail

Install with:

npm i fast-fail

A wrapper around the native Node.js test module that fails entirely after the first failure.

import test from 'fast-fail';

test('evil test >:)', () => {
  throw new Error('I will make this test fail >:)');
}); // This (obviously) fails.

test('the victim', () => {
  console.log('Oh nooo :(');
}); // This fails as well.

Caveats:

  • Requires an ESM module and Node.js v18 or newer.
  • Does not provide additional options as arguments.

Keywords

FAQs

Last updated on 13 May 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc