Added a NodeJS script in `app/client/cypress/scripts/` to setup Cypress and TED locally. Also updated the README file to ensure that we have updated documentation for Cypress setup. Used JS instead of Shell script so that it's easier for the team to modify & improve this setup script as the code base evolves. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new script to set up the Cypress environment locally, making it easier to configure and run Cypress tests. - Added a package.json file for managing dependencies and scripts related to Cypress setup. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Arpit Mohan <arpit@appsmith.com>
15 lines
255 B
JSON
15 lines
255 B
JSON
{
|
|
"name": "scripts",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "cypress-local-setup.js",
|
|
"scripts": {
|
|
"setup": "node cypress-local-setup.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"prompt-sync": "^4.2.0"
|
|
}
|
|
}
|