Run and group tests the way you want to

1 · Gleb Bahmutov · Sept. 3, 2018, 4 a.m.
This blog post will show how to get a "typical" CI/CD pipeline set up that is fast yet powerful. The final pipeline will:runs all tests quickly on CI server using load balancing with --parallel optiondeploys app to the production environmentruns just a few smoke tests against the production urlgroups all tests and smoke tests under a single run in Cypress Dashboard for clarityThe appHere is an example TodoMVC test project - bahmutov/todomvc which is copied from cypress-io/todomvc. A typical Cypr...