E2E tests can't be ran in parallel
See original GitHub issueExpected Behavior
E2E tests can be ran in parallel.
Current Behavior
E2E tests can’t be ran in parallel. Different errors are thrown based on the test runner.
Cypress:
Protractor:
Steps to Reproduce
- Generate a Nx workspace
- Generate either two Cypress or two Protractor projects
npm run affected:e2e -- --all --parallel
Context
- version of Nx used 8.2.0
Issue Analytics
- State:
- Created 4 years ago
- Reactions:7
- Comments:21 (4 by maintainers)
Top Results From Across the Web
Running e2e Tests in Parallel - Quality Thoughts
Without adequately designed e2e tests – which have been designed to be run in parallel – parallelism can introduce non-deterministic and ...
Read more >Running E2E-Tests in parallel - selenium - Stack Overflow
It sounds like a problem with the server, not the tests. Is your server running out of memory by doing too much in...
Read more >What is Parallel Testing and How Does it Work? - Semaphore CI
Our starting definition may look deceptively simple: we say we're performing parallel testing when two or more tests are run simultaneously.
Read more >What is Parallel Testing? Definition, Approach, Example
In Software Engineering, Parallel testing is testing multiple applications or subcomponents of one application concurrently to reduce the test ...
Read more >Parallelization | Cypress Documentation
Cypress can run recorded tests in parallel across multiple machines since version 3.1.0. While parallel tests can also technically run on a single...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Any news about this ?
I have the issue.
I can verify that this approach (adding
-- --parallel
) fixes our problems with the--parallel
flag being eaten by nx, and not passed to cypress.