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

eslint-plugin-noredink-cypress

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-noredink-cypress

An ESLint Plugin with rules used by NoRedInk in our Cypress test files

  • 0.3.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-noredink-cypress

An ESLint Plugin with additional rules we use in our Cypress test files.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-noredink-cypress:

$ npm install eslint-plugin-noredink-cypress --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-cypress-percy globally.

Usage

Add noredink-cypress to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "noredink-cypress"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "noredink-cypress/assertion-before-command": ["error", {commandsToCheck: ["percySnapshot", "snapshot", "asdf"]}]
    }
}

Supported Rules

RuleDescription
assertion-before-commandEnsure that certain Cypress commands (such as cy.percySnapshot) are always preceded by an assertion or a call to function (which may or may not contain an assertion, that isn't checked)

Development

You can test this plugin locally with npm run test.

Keywords

FAQs

Package last updated on 02 Dec 2023

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