Reputation: 665
How can I run my Cypress
tests using:
cypress run --headed
but keep the test runner open at the end of the tests, like it is using the Cypress Test Runner in interactive mode (cypress open
)?
I prefer cypress run --headed
over cypress open
, which require user interaction to launch the tests.
(The context in running the Cypress tests in continuous integration, but with xvfb
and a vnc
server, so the test runner can still be used once the tests are complete).
Upvotes: 9
Views: 4587