npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@taktikorg/aliquid-rerum-voluptate

v3.2.19

Published

An [ESLint](https://eslint.org) plugin for your [Cypress](https://cypress.io) tests.

Downloads

1,153

Maintainers

lechuongb878lechuongb878

Keywords

estreeassertcore-jsreusetypesagentincludesWebSocketfromfullrangeerrorqueueMicrotaskArray.prototype.flattenimmutablefunction.lengthidlechromecontainsinferencebrowseromitserializerkarmagraphqltestjsdiffqueuees2016mapconsolesuperstructrequestcryptooffsetfile systemargsmergecollectionhooksfolderawesomesaucemkdirspromisebusyfindspinnernodereduxES6stylinginternalutilitycompareescaperatelimitappenvironmentslinewrapinstallcache0postcssnopewritableapidependency managerArray.prototype.findLastIndextestingreact-hook-formendercolorbluebirdextraprototypecommanderpushes2015rmdirworkspace:*ajaxavaSymbol.toStringTagargparseswferrorfigleta11ydependenciesbannermapreducetrimLeftfast-deep-copyeslintconfigstreamsastlintdiffframerdataviewprotobufebsthreeInt16ArraypathdroptypesafeRxdirspawnECMAScript 2016columnbundlerparsesomeglobconcatMapautoscalingequalitytapebreakstableshelltapduplexclass-validatorautoprefixerargumentssetObject.entriesargumentArrayBuffer#slicees2018es-abstractxdgresolvetimesyntaxerrorregularsyntaxECMAScript 2017negativetelephonelockfiletakerdscharacterdeletebytepnpm9valuecss-in-jszerocliYAMLeast-asian-widthchinesesettingstraversees8styleguideforEachframeworkroute53workerconcatcsslengthlimitdeepclonespringtermcmdes5matchpluginexpressiondescriptorsES2015reactObject.isprefixcolorsESterminalWebSocketsgetoptInt32ArrayformattingargvECMAScript 2020clientstartECMAScript 7walkstatelessutil.inspectnamevarsdebuggroupio-tsextensionstyleredux-toolkitArray.prototype.findLastfastindicatorbindlanguagestringArrayBufferpackage managersameValueZeroECMAScript 2021makeTypeScriptflatMapreact-testing-libraryyamlbundlingextendremoveconfigrouteminimaltypedarraysinbrowserlistECMAScript 3functionalfast-copyserializationReactiveExtensionsansiidentifiersslicecoretoSorteddeep-copyeditorECMAScript 6mocharobustReflect.getPrototypeOfES2017progressbddspecnpmlook-uputilitiesobjectObservablesbatchmimetypesparentjsonpathcharsetgetintrinsicsafereact animationboundcloudtrailwgetshamgenericsweaksetES2020wrapArray.prototype.filterawsCSSStyleDeclarationsidermobjemitpackage.jsonproxyimportflattenpositivesymbolprunenativedragchaistreamgetPrototypeOfArray.prototype.flatsesECMAScript 5typanion3dsetImmediatereal-timestringifySetrgbparserFloat32Arrayfast-cloneprivatecollection.es6fastcopymoveJSON-Schemamulti-packageES2022javascriptsortcloudsearchread_.extendefficientairbnbfastclonepipejsdombyteLengthlaunchawaitjsoniamregexserializewidthparsinghas-ownfinduppreserve-symlinksopenES3typed arrayInt8ArrayeslintplugindirectoryiterationtoolkitTypeBoxUint8Arrayidimportexportexecaccessorsequencepatchstylesicuweakmaptesterreadablesymlinkwhichregular expressionES2023ES2016zodjQueryperformancecodes__proto__regexpes2017Float64Arrayvalidate

Readme

Cypress ESLint Plugin CircleCI

An ESLint plugin for your Cypress tests.

Note: If you installed ESLint globally then you must also install @taktikorg/aliquid-rerum-voluptate globally.

Installation

Prerequisites: ESLint v7, v8 or v9. This plugin supports the use of Flat config files with ESLint 8.57.0 and above through @eslint/eslintrc.

npm install @taktikorg/aliquid-rerum-voluptate --save-dev

or

yarn add @taktikorg/aliquid-rerum-voluptate --dev

Usage

If you are using ESLint v7 or v8, then add an .eslintrc.json file to the root directory of your Cypress project with the contents shown below. You can continue to use this format with ESLint v9 if you set the ESLINT_USE_FLAT_CONFIG environment variable to false (see ESLint v9 > Configuration Files (Deprecated).

ESLint v9 uses a Flat config file format with filename eslint.config.*js by default. Please refer to additional Flat config installation and configuration details. (You may also use this with ESLint 8.57.0.)

{
  "plugins": [
    "cypress"
  ]
}

You can add rules:

{
  "rules": {
    "cypress/no-assigning-return-values": "error",
    "cypress/no-unnecessary-waiting": "error",
    "cypress/assertion-before-screenshot": "warn",
    "cypress/no-force": "warn",
    "cypress/no-async-tests": "error",
    "cypress/no-async-before": "error",
    "cypress/no-pause": "error"
  }
}

You can allow certain globals provided by Cypress:

{
  "env": {
    "cypress/globals": true
  }
}

Recommended configuration

Use the recommended configuration and you can forego configuring plugins, rules, and env individually. See below for which rules are included.

{
  "extends": [
    "plugin:cypress/recommended"
  ]
}

Disable rules

You can disable specific rules per file, for a portion of a file, or for a single line.

Disable the cypress/no-unnecessary-waiting rule for the entire file by placing this at the start of the file:

/* eslint-disable cypress/no-unnecessary-waiting */

Disable the cypress/no-unnecessary-waiting rule for only a portion of the file:

it('waits for a second', () => {
  ...
  /* eslint-disable cypress/no-unnecessary-waiting */
  cy.wait(1000)
  /* eslint-enable cypress/no-unnecessary-waiting */
  ...
})

Disable the cypress/no-unnecessary-waiting rule for a specific line:

it('waits for a second', () => {
  ...
  cy.wait(1000) // eslint-disable-line cypress/no-unnecessary-waiting
  ...
})

You can also disable a rule for the next line:

it('waits for a second', () => {
  ...
  // eslint-disable-next-line cypress/no-unnecessary-waiting
  cy.wait(1000)
  ...
})

For more, see the ESLint rules documentation.

Rules

These rules enforce some of the best practices recommended for using Cypress.

💼 Configurations enabled in.
✅ Set in the recommended configuration.

| Name | Description | 💼 | | :----------------------------------------------------------------------- | :--------------------------------------------------------- | :- | | assertion-before-screenshot | require screenshots to be preceded by an assertion | | | no-assigning-return-values | disallow assigning return values of cy calls | ✅ | | no-async-before | disallow using async/await in Cypress before methods | | | no-async-tests | disallow using async/await in Cypress test cases | ✅ | | no-force | disallow using force: true with action commands | | | no-pause | disallow using cy.pause() calls | | | no-unnecessary-waiting | disallow waiting for arbitrary time periods | ✅ | | require-data-selectors | require data-* attribute selectors | | | unsafe-to-chain-command | disallow actions within chains | ✅ |

Mocha and Chai

Cypress is built on top of Mocha and Chai. See the following sections for information on using ESLint plugins eslint-plugin-mocha and eslint-plugin-chai-friendly together with @taktikorg/aliquid-rerum-voluptate.

Mocha .only and .skip

During test spec development, Mocha exclusive tests .only or Mocha inclusive tests .skip may be used to control which tests are executed, as described in the Cypress documentation Excluding and Including Tests. To apply corresponding rules, you can install and use eslint-plugin-mocha. The rule mocha/no-exclusive-tests detects the use of .only and the mocha/no-skipped-tests rule detects the use of .skip:

npm install --save-dev eslint-plugin-mocha

In your .eslintrc.json:

{
  "plugins": [
    "cypress",
    "mocha"
  ],
  "rules": {
    "mocha/no-exclusive-tests": "warn",
    "mocha/no-skipped-tests": "warn"
  }
}

Or you can simply use the cypress/recommended and mocha/recommended configurations together, for example:

{
  "extends": [
    "plugin:cypress/recommended",
    "plugin:mocha/recommended"
  ]
}

Chai and no-unused-expressions

Using an assertion such as expect(value).to.be.true can fail the ESLint rule no-unused-expressions even though it's not an error in this case. To fix this, you can install and use eslint-plugin-chai-friendly.

npm install --save-dev eslint-plugin-chai-friendly

In your .eslintrc.json:

{
  "plugins": [
    "cypress",
    "chai-friendly"
  ],
  "rules": {
    "no-unused-expressions": 0,
    "chai-friendly/no-unused-expressions": 2
  }
}

Or you can simply add its recommended config:

{
  "extends": ["plugin:chai-friendly/recommended"]
}

Contributing

Please see our Contributing Guideline which explains how to contribute rules or other fixes and features to the repo.