Run Two Cypress Test Runners At The Same Time

1 · Gleb Bahmutov · June 12, 2021, 6:04 p.m.
Please start by reading the blog post Test a Socket.io Chat App using Cypress. In this blog post we will run two Cypress test runners concurrently without any synchronization between them to test a real-time chat application.Separate specsFirst, we want to give each Cypress test runner its own configuration and the spec to run. While the first Cypress test runner executes the spec file cypress/pair/first-user.js, the second Cypress test runner should execute the spec file cypress/pair/second-use...