The example at https://github.com/cypress-io/cypress/wiki/env#no-arguments-usage shows the file like:
// cypress.json
{
"env": {
"foo": "bar",
"baz": "quux"
}
}
But that doesn't work. It should, in fact, be:
// cypress.json
{
"cypress": {
"env": {
"foo": "bar",
"baz": "quux"
}
}
}
The example at https://github.com/cypress-io/cypress/wiki/env#no-arguments-usage shows the file like:
But that doesn't work. It should, in fact, be: