cypress-grep icon indicating copy to clipboard operation
cypress-grep copied to clipboard

Filter tests using substring

Results 49 cypress-grep issues
Sort by recently updated
recently updated
newest added

I have 2 specs "breakline.js", "parameterized.js" and many others. "breakline.js": describe('breaklines',() => { it('some loooooooooooooooooooooooooooooong' + 'test name', {tags: ['@grep']}, function () { }); }) "parameterized.js": describe('parametrized',() => { ['name1',...

To pre-filter specs that only have tagged tests We need a better structure of test tags - where we find all suites and tests with their tags Blocked by https://github.com/bahmutov/find-test-names/issues/5

enhancement

Very minor, but may be confusing when you first use the plugin. i.e if you have the following structure: spec folder1/spec folder1/subfolder/spec folder2/spec normal cypress runs it in this order....

Hey There, I have file "sourcing.spec.ts" when i try to use cypress-grep with ".ts" spec i see this error, Can you please help me with this issue ? I Need...

## Functionality currently in docs: run all tests with "hello world" or "auth user" in their title `$ npx cypress run --env grep="hello world; auth user"` ## Additional functionality desired:...

Hi Gleb! I'm loving the `grepTags` option; this is a really great and something I've been looking for an elegant solution to for quite some time! 🎉 One issue I'm...

With this spec file: ``` describe('Cypress grep', { tags: '@smoke' }, () => { before(() => { expect(false).to.equal(true) }) it('succeeds', () => { expect(true).to.equal(true) }) }) ``` When executing cypress...

If there is nothing to grep by, do not print this terminal message ``` cypress-grep: will omit filtered tests ```

I use env for my config file. This is a part of the script for my pipeline. `npx cypress run --record --parallel --ci-build-id "$(Build.BuildId)" --env $(stage)=true --config-file` In Cypress Plugins...