Required Tags

1 · Gleb Bahmutov · Jan. 24, 2023, 7:39 p.m.
I love writing end-to-end tests. In my repos, user flows are typically tested using Cypress. I also use Cypress to perform other automated tasks, like scraping my blog posts into a search index, cleaning up old test data, and downloading the CMS backup data for my courses. A typical repo is like bahmutov/required-tags-example with its specs:cypress/e2e/clean.cy.js123456describe('clean', () => { it('old data', () => { // pretend we are deleting old test data ... })})cypress/e2e/scrape.cy....