- Operating System: Ubuntu 17.04 - Cypress Version: 2.0.2 - Browser Version: Chrome 61 ### Is this a Feature or Bug? Bug or maybe feature ### Current behavior: JSON passed in env variable is modified ### Desired behavior: value of env variable should be passed unmodified ### How to reproduce: Run with env variable ```sh npx cypress open --env token='{"a":"5", "b":{"c":"x"}}' ``` ```js console.log(Cypress.env('token')) ``` Result in the browser console `"a":"5"| "b":{"c":"x"}`