Backslash is not recognized #14650
-
Hello all, I am trying to connect to a SQL Server with Cypress and have configuration added in the cypress.json as described in the documentations, unfortunately I am not able to connect to our database, I thought it is due to VPN issues as our database(has 2 VPN's) is not accessible from our Local systems. But now I realized that the backward Slash '' is not recognized in the cypress Dashboard Settings ->Configuration and skips the first letter of my username i.e., |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
When writing JSON strings you need to escape the |
Beta Was this translation helpful? Give feedback.
When writing JSON strings you need to escape the
\
character, so it should be written as"userName": "me\\here"