Socket
Socket
Sign inDemoInstall

jest-offline

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-offline

Add to setupFiles in jest to block network access for tests


Version published
Weekly downloads
11K
increased by13.52%
Maintainers
1
Weekly downloads
 
Created
Source

Jest-Offline

Jest-Offline is an addon to your Jest test suite which will fail tests that make network requests.

To install:

yarn add jest-offline

To use:

{
	"jest": {
    	"setupFiles": [
        	"<rootDir>/node_modules/jest-offline"
        ]
    }
}

Any tests that make network requests will fail with a thrown exception.

Why do this?

Fundamentally, unit tests should not make network requests. Unit tests should be as small as possible and test components in isolation whenever possible.

Any tests that rely on the network are inherently flaky and can put a strain on systems.

The best unit tests are tests that give the exact same result every single time you run the test. If they rely on network then that is simply impossible to achieve.

So jest-offline offers a simple way to:

  1. Identify what tests are hitting the network
  2. Prevent tests from hitting the network

You could either use this locally in order to see what tests are hitting the network. Or you could enable this by default on CI so no new tests can be added that hit the network.

FAQs

Package last updated on 17 Jan 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc