Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cypress-plugin-network-shim

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cypress-plugin-network-shim

A plugin for Cypress.io tests enabling record and replay of application network requests.

  • 0.9.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
Maintainers
1
Weekly downloads
 
Created
Source

cypress-plugin-network-shim

npm travis build

This is a utility for Cypress.io end-to-end testing which enables recording snapshots of real backend traffic.

The generated snapshots can then be used to replay or "stub" the network on subsequent test runs, effectively mocking out the server to increase test repeatability and performance.

Modes of operation

There are three modes of operation:

  • GENERATE - record network requests and responses, generate fixtures for future stubbing
  • STUB - Use exiting network fixtures to stub application network responses.
  • SKIP - Operate end-to-end as if the network shim weren't in place.

Usage

Your project must be using Cypress:

yarn install --dev cypress
yarn install --dev cypress-plugin-network-shim

In cypress/support/index.js initialize the Network Shim:

import initNetworkShim from 'cypress-plugin-network-shim'

initNetworkShim();
// Cypress.NetworkShim should now be accessible from any Cypress support or test file

In a test file, i.e. cypress/integration/test.spec.js, add the following:

before(() => {
  Cypress.NetworkShim.enable({
    specName: 'test',
  });
});

At this point, the network shim will be enabled whenever this test is run.

Environment Variables

> export CYPRESS_NETWORK_SHIM_HOST_API=https://api.example.com
> export CYPRESS_NETWORK_SHIM_MODE=GENERATE
> cypress

OR

> cypress --env NETWORK_SHIM_HOST_API=https://api.example.com --env NETWORK_SHIM_MODE=GENERATE

Configuration

To set default app-wide network shim configuration, pass a configuration object to initNetworkShim in cypress/support/index.js:

import initNetworkShim from 'cypress-plugin-network-shim'

initNetworkShim({
  hosts: {
    'api': 'https://api.example.com'
  }
});

FAQs

Package last updated on 28 Jan 2019

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