- Install Nodejs v12+
- Clone or download cytorus-boilerplate.
- Run
npm install
in root folder
To run tests in parallel, you'll need a few more dependencies so follow parallel run configuration.
Cytorus relies on Cypress. Hence, it uses the same directory structure.
ProjectRoot
|__cypress
| |___ fixtures
| |___ integration
| |___ features
| |___ steps
| |___ plugins
| |___ reports
| |___ screenshots
| |___ support
|__package.json
|__cypress.json
|__cytorus.config.js
Cytorus reads feature files from cypress/integration/features
folder. However, step definitions can exist anywhere inside cypress/integration/
folder.
You need this minimum configuration in cypress.json
{
"projectId": "of-your-wish", //for parallel run
"ignoreTestFiles": ["*.js","*.ts", "*.d_ts", "*.json", "*.xml"],
}
It is optional. But check configuration that you can set to use more features from Cytorus.