n8n/cypress
2025-09-26 13:31:53 +01:00
..
composables feat(editor): Change default sidebar state to collapsed (#19692) 2025-09-19 10:46:49 +01:00
e2e test: Migrate basic folder tests to Playwright (#20074) 2025-09-26 13:31:53 +01:00
fixtures test: Migrate Langchain e2e tests to Playwright (#19161) 2025-09-08 18:06:00 +02:00
pages refactor: Clean up partial exec version flag (#19598) 2025-09-24 19:07:10 +02:00
scripts
support fix(editor): Set workflow name when importing (no-changelog) (#19410) 2025-09-11 15:29:41 +03:00
utils refactor: Clean up partial exec version flag (#19598) 2025-09-24 19:07:10 +02:00
.gitignore
augmentation.d.ts
biome.jsonc
constants.ts feat(editor): Add Python to Code actions (#18668) 2025-08-26 14:29:50 +02:00
cypress.config.js ci: Remove Cypress cloud reporting (#19593) 2025-09-19 15:44:53 +01:00
eslint.config.mjs
package.json fix(editor): Add debounce to text parameter input (#19339) 2025-09-11 08:56:18 +00:00
README.md
tsconfig.json
types.ts

Debugging Flaky End-to-End Tests - Usage

To debug flaky end-to-end (E2E) tests, use the following command:

pnpm run debug:flaky:e2e -- <grep_filter> <burn_count>

Parameters:

  • <grep_filter>: (Optional) A string to filter tests by their it() or describe() block titles, or by tags if using the @cypress/grep plugin. If omitted, all tests will be run.
  • <burn_count>: (Optional) The number of times to run the filtered tests. Defaults to 5 if not provided.

Examples:

  1. Run all tests tagged with CAT-726 ten times:

    pnpm run debug:flaky:e2e CAT-726 10
    
  2. Run all tests containing "login" five times (default burn count):

    pnpm run debug:flaky:e2e login
    
  3. Run all tests five times (default grep and burn count):

    pnpm run debug:flaky:e2e