Skip welcome screen testing type and browser selection. #23051
-
With the new version of cypress starting up leads to a page where you have to first select testing type (e2e or component) and then a browser. Is there a way to choose a default browser and testing type so that I am immediately launched into this page? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Not currently a way to set this via the UI, but you can pass in commands like so: npx cypress open --e2e --browser electron // goes directly into the spec view
npx cypress open --component --browser electron // does the same for component tests |
Beta Was this translation helpful? Give feedback.
-
@liambutler love those command options! Is there any chance that we could get one like Example:
That would allow me to run tests with a single click in vscode and truly be a dream 🙏 Thank you 🙏 |
Beta Was this translation helpful? Give feedback.
Not currently a way to set this via the UI, but you can pass in commands like so: