https://cypress.io logo
Hi Steph! I'm currently trying to do this with my ...
# best-practices
c
Hi Steph! I'm currently trying to do this with my company's Cypress tests, where there's e2e tests that go deeper into each feature and smoke tests that make sure a once-over with correct data is working fine. What I do is separate the two into folders, so the structure is
cypress/e2e/smoke-tests
and
cypress/e2e/UI-tests
. Then, I can call each folder of tests when I want to do smoke testing or e2e testing, and it's easily callable in CI due to
cypress run
and
docker run
allowing for folder globbing, so a whole folder of files can be grabbed at one time. Hope this helps!