Files
cypress/cli/__snapshots__/run_spec.js
T
Zachary Williams 110f8ae02d fix: remove --config-file false references and update types (#20643)
* fix: remove --config-file false references and update types

* cleanup tests and types, catch errors when calling open

* fix test

* remove string check

* code quality feedback
2022-03-21 22:49:14 +10:00

28 lines
544 B
JavaScript

exports['exec run .processRunOptions does not remove --record option when using --browser 1'] = [
"--run-project",
null,
"--browser",
"test browser",
"--record",
"foo"
]
exports['exec run .processRunOptions passes --browser option 1'] = [
"--run-project",
null,
"--browser",
"test browser"
]
exports['exec run .processRunOptions passes --record option 1'] = [
"--run-project",
null,
"--record",
"my record id"
]
exports['exec run .processRunOptions defaults to e2e testingType 1'] = [
"--run-project",
null
]