mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 10:10:32 -06:00
28 lines
572 B
JavaScript
28 lines
572 B
JavaScript
exports['config_as_object 1'] = {
|
|
'config': '{"baseUrl":"http://localhost:2000","watchForFileChanges":false}',
|
|
}
|
|
|
|
exports['env_as_object 1'] = {
|
|
'env': '{"foo":"bar","magicNumber":1234,"host":"kevin.dev.local"}',
|
|
}
|
|
|
|
exports['env_as_string 1'] = {
|
|
'env': 'foo=bar',
|
|
}
|
|
|
|
exports['others_unchanged 1'] = {
|
|
'foo': 'bar',
|
|
}
|
|
|
|
exports['reporter_options_as_object 1'] = {
|
|
'reporterOptions': '{"mochaFile":"results/my-test-output.xml","toConsole":true}',
|
|
}
|
|
|
|
exports['spec_as_array 1'] = {
|
|
'spec': '["a","b","c"]',
|
|
}
|
|
|
|
exports['spec_as_string 1'] = {
|
|
'spec': 'x,y,z',
|
|
}
|