mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-08 15:59:46 -05:00
b8527a2a7f
* 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
35 lines
680 B
JavaScript
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
|
|
]
|