@bahmutov/cy-grep
TypeScript icon, indicating that this package has built-in type declarations

1.9.17 • Public • Published

@bahmutov/cy-grep cypress version

Filter tests using substring or tag

# run only tests with "hello" in their names
npx cypress run --env grep=hello

  ✓ hello world
  - works
  - works 2 @tag1
  - works 2 @tag1 @tag2

  1 passing (38ms)
  3 pending

All other tests will be marked pending, see why in the Cypress test statuses blog post.

If you have multiple spec files, all specs will be loaded, and every test will be filtered the same way, since the grep is run-time operation and cannot eliminate the spec files without loading them. If you want to run only specific tests, use the built-in --spec CLI argument.

Training

Watch the video intro to cypress-grep plugin and study my 🎓 Cypress course Cypress Plugins:

Table of Contents

Install

Assuming you have Cypress installed, add this module as a dev dependency.

# using NPM
npm i -D @bahmutov/cy-grep
# using Yarn
yarn add -D @bahmutov/cy-grep

Note: @bahmutov/cy-grep should work with all Cypress versions, but I mostly test it on the newest versions.

Support file

required: load this module from the support file or at the top of the spec file if not using the support file. You import the registration function and then call it:

// cypress/support/e2e.js

// load and register the grep feature using "require" function
// https://github.com/bahmutov/cy-grep
const registerCypressGrep = require('@bahmutov/cy-grep')
registerCypressGrep()

// if you want to use the "import" keyword
// note: `./index.d.ts` currently extends the global Cypress types and
// does not define `registerCypressGrep` so the import path is directly
// pointed to the support file
import registerCypressGrep from '@bahmutov/cy-grep/src/support'
registerCypressGrep()

// "import" with `@ts-ignore`
// @see error 2306 https://github.com/microsoft/TypeScript/blob/3fcd1b51a1e6b16d007b368229af03455c7d5794/src/compiler/diagnosticMessages.json#L1635
// @ts-ignore
import registerCypressGrep from '@bahmutov/cy-grep'
registerCypressGrep()

Config file

optional: load and register this module from the config file:

// cypress.config.js
{
  e2e: {
    setupNodeEvents(on, config) {
      require('@bahmutov/cy-grep/src/plugin')(config);
      // IMPORTANT: return the config object
      return config;
    },
  }
}

Installing the plugin via setupNodeEvents() is required to enable the grepFilterSpecs feature.

Tip: you probably want to set these env settings in your config file

module.exports = defineConfig({
  env: { grepFilterSpecs: true, grepOmitFiltered: true },
  ...
})

Trying to call the plugin function without any arguments or with more than a single argument throws an error

// ERROR: forgot the config file
setupNodeEvents(on, config) {
  require('@bahmutov/cy-grep/src/plugin')();
}
// ERROR: too many arguments
setupNodeEvents(on, config) {
  require('@bahmutov/cy-grep/src/plugin')(on, config);
}

Install in Cypress versions before 10

See test-cy-v9 for example

// cypress/plugins/index.js
module.exports = (on, config) => {
  // `on` is used to hook into various events Cypress emits
  // `config` is the resolved Cypress config
  require('@bahmutov/cy-grep/src/plugin')(config)
  // IMPORTANT: return the config object
  return config
}
// cypress/support/index.js
require('@bahmutov/cy-grep')()

Put the common settings into cypress.json

{
  "env": {
    "grepOmitFiltered": true,
    "grepFilterSpecs": true
  }
}

Usage Overview

You can filter tests to run using part of their title via grep, and via explicit tags via grepTags Cypress environment variables.

Most likely you will pass these environment variables from the command line. For example, to only run tests with "login" in their title and tagged "smoke", you would run:

Here are a few examples:

# run only the tests with "auth user" in the title
$ npx cypress run --env grep="auth user"
# run tests with "hello" or "auth user" in their titles
# by separating them with ";" character
$ npx cypress run --env grep="hello; auth user"
# run tests tagged @fast
$ npx cypress run --env grepTags=@fast
# run only the tests tagged "smoke"
# that have "login" in their titles
$ npx cypress run --env grep=login,grepTags=smoke
# only run the specs that have any tests with "user" in their titles
$ npx cypress run --env grep=user,grepFilterSpecs=true
# only run the specs that have any tests tagged "@smoke"
$ npx cypress run --env grepTags=@smoke,grepFilterSpecs=true
# run only tests that do not have any tags
# and are not inside suites that have any tags
$ npx cypress run --env grepUntagged=true

You can use any way to modify the environment values grep and grepTags, except the run-time Cypress.env('grep') (because it is too late at run-time). You can set the grep value in the cypress.json file to run only tests with the substring viewport in their names

{
  "env": {
    "grep": "viewport"
  }
}

You can also set the env.grep object in the plugin file, but remember to return the changed config object:

// cypress/plugin/index.js
module.exports = (on, config) => {
  config.env.grep = 'viewport'
  return config
}

You can also set the grep and grepTags from the DevTools console while running Cypress in the interactive mode cypress open, see DevTools Console section.

Filter by test title

# run all tests with "hello" in their title
$ npx cypress run --env grep=hello
# run all tests with "hello world" in their title
$ npx cypress run --env grep="hello world"

OR substring matching

You can pass multiple title substrings to match separating them with ; character. Each substring is trimmed.

# run all tests with "hello world" or "auth user" in their title
$ npx cypress run --env grep="hello world; auth user"

Test suites

The filter is also applied to the "describe" blocks. In that case, the tests look up if any of their outer suites are enabled.

describe('block for config', () => {
  it('should run', () => {})

  it('should also work', () => {})
})
# run any tests in the blocks including "config"
--env grep=config

Note: global function describe and context are aliases and both supported by this plugin.

Invert filter

# run all tests WITHOUT "hello world" in their title
$ npx cypress run --env grep="-hello world"
# run tests with "hello", but without "world" in the titles
$ npx cypress run --env grep="hello; -world"

Filter with tags

You can select tests to run or skip using tags by passing --env grepTags=... value.

# enable the tests with tag "one" or "two"
--env grepTags="one two"
# enable the tests with both tags "one" and "two"
--env grepTags="one+two"
# enable the tests with "hello" in the title and tag "smoke"
--env grep=hello,grepTags=smoke

If you can pass commas in the environment variable grepTags, you can use , to separate the tags

# enable the tests with tag "one" or "two"
CYPRESS_grepTags=one,two npx cypress run

If a specific tag is not found in the specs, you will get a warning in the terminal:

$ npx cypress run --env grepTags=@wrong-tag
cy-grep: could not find the tag "@wrong-tag" in any of the specs

Tags in the test config object

Cypress tests can have their own test config object, and when using this plugin you can put the test tags there, either as a single tag string or as an array of tags.

it('works as an array', { tags: ['config', 'some-other-tag'] }, () => {
  expect(true).to.be.true
})

it('works as a string', { tags: 'config' }, () => {
  expect(true).to.be.true
})

You can run both of these tests using --env grepTags=config string.

AND tags

Use + to require both tags to be present

--env grepTags=@smoke+@fast

OR tags

You can run tests that match one tag or another using spaces. Make sure to quote the grep string!

# run tests with tags "@slow" or "@critical" in their names
--env grepTags='@slow @critical'

Inverted tags

You can skip running the tests with specific tag using the invert option: prefix the tag with the character -.

# do not run any tests with tag "@slow"
--env grepTags=-@slow

If you want to run all tests with tag @slow but without tag @smoke:

--env grepTags=@slow+-@smoke

Note: Inverted tag filter is not compatible with the grepFilterSpecs option

NOT tags

You can skip running the tests with specific tag, even if they have a tag that should run, using the not option: prefix the tag with --.

Note this is the same as appending +-<tag to never run> to each tag. May be useful with large number of tags.

If you want to run tests with tags @slow or @regression but without tag @smoke

--env grepTags='@slow @regression --@smoke'

which is equivalent to

--env grepTags='@slow+-@smoke @regression+-@smoke'

Tags in test suites

The tags are also applied to the "describe" blocks. In that case, the tests look up if any of their outer suites are enabled.

describe('block with config tag', { tags: '@smoke' }, () => {})
# run any tests in the blocks having "@smoke" tag
--env grepTags=@smoke
# skip any blocks with "@smoke" tag
--env grepTags=-@smoke

See the cypress/integration/describe-tags-spec.js file.

Note: global function describe and context are aliases and both supported by this plugin.

Grep untagged tests

Sometimes you want to run only the tests without any tags, and these tests are inside the describe blocks without any tags.

$ npx cypress run --env grepUntagged=true

Pre-filter specs (grepFilterSpecs)

By default, when using grep and grepTags all specs are executed, and inside each the filters are applied. This can be very wasteful, if only a few specs contain the grep in the test titles. Thus when doing the positive grep, you can pre-filter specs using the grepFilterSpecs=true parameter.

# filter all specs first, and only run the ones with
# suite or test titles containing the string "it loads"
$ npx cypress run --env grep="it loads",grepFilterSpecs=true
# filter all specs files, only run the specs with a tag "@smoke"
$ npx cypress run --env grepTags=@smoke,grepFilterSpecs=true

Note 1: this requires installing this plugin in your project's plugin file, see the Install.

Note 2: the grepFilterSpecs option is only compatible with the positive grep and grepTags options, not with the negative (inverted) "-..." filter.

Note 3: if there are no files remaining after filtering, the plugin prints a warning and leaves all files unchanged to avoid the test runner erroring with "No specs found".

Tip: you can set this environment variable in the config file file to enable it by default and skip using the environment variable:

// config file
{
  "e2e": {
    "env": {
      "grepFilterSpecs": true
    }
  }
}

Omit filtered tests (grepOmitFiltered)

By default, all filtered tests are made pending using it.skip method. If you want to completely omit them, pass the environment variable grepOmitFiltered=true.

Pending filtered tests

cypress run --env grep="works 2"

Pending tests

Omit filtered tests

cypress run --env grep="works 2",grepOmitFiltered=true

Only running tests remaining

Tip: you can set this environment variable in the config file (usually cypress.config.js) file to enable it by default and skip using the environment variable:

{
  "env": {
    "grepOmitFiltered": true
  }
}

Disable grep

If you specify the grep parameters the config file, you can disable it from the command line

$ npx cypress run --env grep=,grepTags=,burn=

Burn (repeat) tests

You can burn the filtered tests to make sure they are flake-free

npx cypress run --env grep="hello world",burn=5

You can pass the number of times to run the tests via environment name burn or grepBurn or grep-burn. Note, if a lot of tests match the grep and grep tags, a lot of tests will be burnt!

If you do not specify the "grep" or "grep tags" option, the "burn" will repeat every test.

Required tags

Sometimes you might want to run a test or a suite of tests only if a specific tag or tags are present. For example, you might have a test that cleans the data. This test is meant to run nightly, not on every test run. Thus you can set a required tag:

it('cleans up the data', { requiredTags: '@nightly' }, () => {...})

When you run the tests now, this test will be skipped, as if it were it.skip. It will only run if you use the tag @nightly, for example: npx cypress run --env grepTags=@nightly.

If grepFilterSpecs=true and a spec has only required tags, and you are running without any tags, the the spec will be skipped completely.

Read the blog posts 📝 Required Tags and Use Required Test Tags Instead Of Skipping Tests.

Negative grep

When grepping tests by title, the parent suite title is included. For example if this is the spec

describe('users', () => {
  it('works 1', () => {})
  it('works 2', () => {})
  it('works 3', () => {})
})

describe('projects', () => {
  it('load 1', () => {})
  it('load 2', () => {})
  it('load 3', () => {})
})

You can run the tests inside the suite "projects" by using --env grep=projects and you can skip the tests in the suite projects by using --env grep=-projects.

TypeScript support

Because the Cypress test config object type definition does not have the tags property we are using above, the TypeScript linter will show an error. Just add an ignore comment above the test:

// @ts-ignore
it('runs on deploy', { tags: 'smoke' }, () => {
  ...
})

This package comes with src/index.d.ts definition file that adds the property tags to the Cypress test overrides interface. Include this file in your specs or TS config settings. For example, you can load it using a reference comment

// cypress/integration/my-spec.js
/// <reference types="@bahmutov/cy-grep" />

If you have tsconfig.json file, add this library to the types list

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["es5", "dom"],
    "types": ["cypress", "@bahmutov/cy-grep"]
  },
  "include": ["**/*.ts"]
}

grepPrefixAt

Using test tags that start with @ is so common, you can enforce it using the env option grepPrefixAt: true. This lets you use @tag1,@tag2, ... or tag1,tag2, ... when calling.

# use grepPrefixAt in your env settings object
# use { tags: '@tag1' } in your tests

# then these two are equivalent
--env grepTags=@tag1
--env grepTags=tag1

grepSpec

If the user selected spec(s) to run, then it might conflict with grepFilterSpecs=true that filters the specs. There is no way to "know" if the user used --spec <...> option when the plugin runs, see issues 33 and 26032. Thus if you use --spec pattern, you need to pass it to the plugin via CYPRESS_grepSpec=pattern or --env grepSpec=pattern option.

cypress run --spec a.cy.js --env grepTags=...,grepSpec=a.cy.js

General advice

  • keep it simple.
  • I like using @ as tag prefix to make the tags searchable
// ✅ good practice
describe('auth', { tags: '@critical' }, () => ...)
it('works', { tags: '@smoke' }, () => ...)
it('works quickly', { tags: ['@smoke', '@fast'] }, () => ...)

// 🚨 NOT GOING TO WORK
// ERROR: treated as a single tag,
// probably want an array instead
it('works', { tags: '@smoke @fast' }, () => ...)

Grepping the tests

# run the tests by title
$ npx cypress run --env grep="works quickly"
# run all tests tagged @smoke
$ npx cypress run --env grepTags=@smoke
# run all tests except tagged @smoke
$ npx cypress run --env grepTags=-@smoke
# run all tests that have tag @fast but do not have tag @smoke
$ npx cypress run --env grepTags=@fast+-@smoke

I would run all tests by default, and grep tests from the command line. For example, I could run the smoke tests first using grep plugin, and if the smoke tests pass, then run all the tests. See the video How I organize pull request workflows by running smoke tests first and its pull request workflow file.

DevTools console

You can set the grep string from the DevTools Console. This plugin adds method Cypress.grep and Cypress.grepTags to set the grep strings and restart the tests

// filter tests by title substring
Cypress.grep('hello world')
// run filtered tests 100 times
Cypress.grep('hello world', null, 100)
// filter tests by tag string
// in this case will run tests with tag @smoke OR @fast
Cypress.grep(null, '@smoke @fast')
// run tests tagged @smoke AND @fast
Cypress.grep(null, '@smoke+@fast')
// run tests with title containing "hello" and tag @smoke
Cypress.grep('hello', '@smoke')
// run tests with title containing "hello" and tag @smoke 10 times
Cypress.grep('hello', '@smoke', 10)
  • to remove the grep strings enter Cypress.grep()

grepFailed

Once the tests finish, you can run just the failed tests from DevTools console

> Cypress.grepFailed()

Tip: use Cypress.grep() to reset and run all the tests

📝 Read the blog post Run Just The Failed Tests In Cypress.

Debugging

When debugging a problem, first make sure you are using the expected version of this plugin, as some features might be only available in the later releases.

# get the plugin's version using NPM
$ npm ls @bahmutov/cy-grep
...
└── @bahmutov/cy-grep@1.1.0

# get the plugin's version using Yarn
$ yarn why @bahmutov/cy-grep
...
=> Found "@bahmutov/cy-grep@1.1.0"
info Has been hoisted to "@bahmutov/cy-grep"
info This module exists because it's specified in "devDependencies".
...

Second, make sure you are passing the values to the plugin correctly by inspecting the "Settings" tab in the Cypress Desktop GUI screen. You should see the values you have passed in the "Config" object under the env property. For example, if I start the Test Runner with

$ npx cypress open --env grep=works,grepFilterTests=true

Then I expect to see the grep string and the "filter tests" flag in the env object.

Values in the env object

Log messages

This module uses debug to log verbose messages. You can enable the debug messages in the plugin file (runs when discovering specs to filter), and inside the browser to see how it determines which tests to run and to skip. When opening a new issue, please provide the debug logs from the plugin (if any) and from the browser.

Debugging in the plugin

Start Cypress with the environment variable DEBUG=cy-grep. You will see a few messages from this plugin in the terminal output:

$ DEBUG=cy-grep npx cypress run --env grep=works,grepFilterSpecs=true
cy-grep: tests with "works" in their names
cy-grep: filtering specs using "works" in the title
  cy-grep Cypress config env object: { grep: 'works', grepFilterSpecs: true }
  ...
  cy-grep found 1 spec files +5ms
  cy-grep [ 'spec.js' ] +0ms
  cy-grep spec file spec.js +5ms
  cy-grep suite and test names: [ 'hello world', 'works', 'works 2 @tag1',
    'works 2 @tag1 @tag2', 'works @tag2' ] +0ms
  cy-grep found "works" in 1 specs +0ms
  cy-grep [ 'spec.js' ] +0ms

Debugging in the browser

To enable debug console messages in the browser, from the DevTools console set localStorage.debug='cy-grep' and run the tests again.

To see how to debug this plugin, watch the video Debug cypress-grep Plugin but use the string cy-grep

Examples

See also

cy-grep vs cypress-grep vs @cypress/grep

Many years ago I wrote a plugin cypress-grep. When I left the company Cypress, I transferred that MIT-licensed plugin to the Cypress GitHub organization. They moved it to the Cypress monorepo and renamed the NPM module @cypress/grep. I still use this grep plugin in some projects. When Cypress v10 was released, it broke some of the things in the plugin. Since I needed to fix it quickly and the monorepo setup is suboptimal, I forked the plugin back to my own repo bahmutov/cy-grep (this repo) and released under NPM name @bahmutov/cy-grep.

I plan to maintain the plugin @bahmutov/cy-grep in the future, since I rely on it myself a lot.

Small Print

Author: Gleb Bahmutov <gleb.bahmutov@gmail.com> © 2022

License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet / open issue on Github

Readme

Keywords

Package Sidebar

Install

npm i @bahmutov/cy-grep

Weekly Downloads

22,468

Version

1.9.17

License

MIT

Unpacked Size

52 kB

Total Files

6

Last publish

Collaborators

  • bahmutov