Open
Description
Say I have a monorepo with multiple apps which share libs. If i modify a shared lib and want to test if my apps pass the tests, what is the best approach?
- packages
- app-1
- cypress
- app-2
- cypress
- shared-library-1
- shared-library-2
- Can I have cypress search for multiple
integrationFolders
so that a single test run will test all my apps? - Maybe I could use a
cypress
dir in the monorepo root, then have symlinks to the differentcypress/integration
folders in each app in the monorepo?