-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running cypress with no project: false
actually runs cypress open
#3675
Comments
Proposal: We should update To more specifically address what you're really trying to do here
Passing What are you having trouble overriding using the |
Sounds good to me! However, that dosen't solve my issue. For example: cypress.run({
spec: specFiles,
record: false,
config: {
video: false,
screenshots: false,
chromeWebSecurity: false,
},
}); Throws this error:
Yet I specified what spec files to run in the above config You may ask why not just make a If we could solve this and those couple of other small issues it'll be very easy for downstream consumers of Bazel to use Cypress with their projects |
Yeah, that is an open issue that has a PR in review: #1369 This is a great use case for allowing |
Current behavior:
Running
cypress.run({project: false})
opens cypress withcypress open
instead.Desired behavior:
To run cypress with no config file, instead using the config I specified when calling it.
Steps to reproduce: (app code and test code)
Versions
ubuntu 16.04
chrome 72
cypress 3.1.5
The text was updated successfully, but these errors were encountered: