How to organize the cypress tests based on the environment. I am running my cypress tests again mock server and a real setup both.
While running against mock server i can assume that data is always there and can run the full set, but i can only run a subset of the tests when pointing to a real server.
One option ofcourse is to move them to different folder/spec files, is there any other better way e.g. like barrelling files through index.ts?
Whats the convention in cypress to organize tests based on environment?