Files
cypress/cli/__snapshots__/run_spec.js
T
Adam Gastineau b8527a2a7f feat(component-testing): Expose CT through CLI module API (#16368)
* Added testingType CLI module option

* Removed isComponentTesting custom arg and replaced with testingType

* Added default value to docstring

* Removed mutating of args

* Added Module API manual testing docs
2021-05-07 12:44:15 -04:00

35 lines
680 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 passes --config-file false option 1'] = [
"--run-project",
null,
"--config-file",
false
]
exports['exec run .processRunOptions defaults to e2e testingType 1'] = [
"--run-project",
null
]