# cypress-testsuite **Repository Path**: cn-frappe/cypress-testsuite ## Basic Information - **Project Name**: cypress-testsuite - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-09 - **Last Updated**: 2022-02-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Cypress Testsuite --- 1. delete the existing cypress folder within your frappe application folder. 2. clone this repository in the apps/frappe directory ```bash $ git clone git@github.com:frappe/cypress-testsuite.git cypress ``` 3. create a cypress.json file within the frappe application directory, an example config for it would go as follows: ```json { "baseUrl": "http://:", "projectId": "92odwv", "adminPassword": "frappe", "viewportHeight": 1080, "viewportWidth": 1920 } ``` 4. checkout the [commands.js](support/commands.js) for available commands, and some [example ui tests](integration/) for guidelines.