n8n/cypress
2025-09-17 10:42:40 +02:00
..
composables feat: Send node execution finished and node execution data in separate events (no-changelog) (#18875) 2025-09-12 13:56:13 +01:00
e2e refactor(editor): Migrate mapper popover to ruka UI (#19564) 2025-09-17 10:42:40 +02:00
fixtures test: Migrate Langchain e2e tests to Playwright (#19161) 2025-09-08 18:06:00 +02:00
pages feat(core): Prompt user to confirm password when changing email and mfa is disabled (#19408) 2025-09-16 14:00:14 +02:00
scripts feat(editor): Using special env vars as feature flags in the frontend (#17355) 2025-07-17 16:06:21 +02:00
support fix(editor): Set workflow name when importing (no-changelog) (#19410) 2025-09-11 15:29:41 +03:00
utils feat: Send node execution finished and node execution data in separate events (no-changelog) (#18875) 2025-09-12 13:56:13 +01:00
.gitignore refactor: Set up Cypress as pnpm workspace (no-changelog) (#6049) 2024-06-10 15:49:50 +02:00
augmentation.d.ts build: Update ESLint to v9 (#16639) 2025-06-27 10:42:47 +02:00
biome.jsonc ci: Setup biome and pre-commit hooks for formatting (no-changelog) (#10795) 2024-09-17 15:10:22 +03:00
constants.ts feat(editor): Add Python to Code actions (#18668) 2025-08-26 14:29:50 +02:00
cypress.config.js ci: Enable Playwright tests in PRs (#17238) 2025-07-16 09:05:11 +01:00
eslint.config.mjs build: Update ESLint to v9 (#16639) 2025-06-27 10:42:47 +02:00
package.json fix(editor): Add debounce to text parameter input (#19339) 2025-09-11 08:56:18 +00:00
README.md ci: Fix flaky 45-ai test (no-changelog) (#14348) 2025-04-02 13:07:12 +01:00
tsconfig.json feat: Modernize build and testing for workflow package (no-changelog) (#16771) 2025-06-30 20:02:16 +03:00
types.ts fix(editor): Prepare e2e suite for inline-expression-editor for new canvas (no-changelog) (#12110) 2024-12-10 15:35:51 +02:00

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