eslint-plugin-ui-testing

2.0.1 • Public • Published

eslint-plugin-ui-testing

Build Status

ESLint plugin that helps following best practices when writing UI tests. It supports the following automation tools (in alphabetical order):

  • Cypress
  • Playwright
  • Puppeteer
  • TestCafe
  • WebdriverIO

Usage

Prerequisite:

  • ESLint is installed (npm i eslint --save-dev)
  1. Install eslint-plugin-ui-testing:
npm i eslint-plugin-ui-testing --save-dev
  1. Add the ui-testing plugin to the .eslintrc configuration file.
{
    "plugins": ["ui-testing"]
}
  1. Configure the rules as follows by using the recommended ruleset per automation tool. Choose one from:
  • plugin:ui-testing/cypress
  • plugin:ui-testing/playwright
  • plugin:ui-testing/puppeteer
  • plugin:ui-testing/testcafe
  • plugin:ui-testing/webdriverio

Example:

{
    "extends": ["plugin:ui-testing/webdriverio"]
}

Customization

You can customize specific rules in the .eslintrc configuration file.

{
    "rules": {
        "ui-testing/no-disabled-tests": "error", // default = warn
        "ui-testing/no-css-page-layout-selector": ["warn", "webdriverio"] // default = error
    }
}
  • In case you are using a recommended ruleset as described in step 3 (under Usage), then these customized rules will override the default.
  • It is also possible to omit the recommended ruleset and just set each rule specifically as above.

Overview rules

Rule Default Ruleset
missing-assertion-in-test error recommended-badge
no-absolute-url warn cypress-badge webdriverio-badge
no-assertions-in-hooks error recommended-badge
no-browser-commands-in-tests warn playwright-badge puppeteer-badge webdriverio-badge
no-css-page-layout-selector error cypress-badge playwright-badge puppeteer-badge testcafe-badge webdriverio-badge
no-disabled-tests warn recommended-badge
no-focused-tests warn recommended-badge
no-hard-wait error cypress-badge playwright-badge puppeteer-badge testcafe-badge webdriverio-badge
no-implicit-wait error webdriverio-badge
no-link-text-selector error webdriverio-badge
no-tag-name-selector error webdriverio-badge
no-wait-in-tests warn playwright-badge puppeteer-badge testcafe-badge webdriverio-badge
no-xpath-page-layout-selector error webdriverio-badge
no-xpath-selector warn webdriverio-badge

Note: All automation tool specific rulesets include the recommended ruleset.

Dependents (15)

Package Sidebar

Install

npm i eslint-plugin-ui-testing

Weekly Downloads

6,951

Version

2.0.1

License

MIT

Unpacked Size

41.3 kB

Total Files

20

Last publish

Collaborators

  • kwoding