mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-23 00:29:03 -05:00
110f8ae02d
* 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
28 lines
544 B
JavaScript
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
|
|
]
|