Burning Tests with cypress-grep

1 · Gleb Bahmutov · May 18, 2021, 12:43 p.m.
Recently a project of mine bahmutov/cypress-grep-example showed two flaky tests.Are the tests really showing a problem with the application? Or are the tests themselves unreliable? Would these tests show failures if we run them 100 times in a row?This is where the cypress-grep plugin comes in very handy. Just instal it and add to the support file1$ npm i -D cypress-grep1234// add to cypress/support/index.js// load and register the grep feature// https://github.com/bahmutov/cypress-greprequire('c...