frontend/packages/integration-tests-cypress/
├── support <--- add commands to Cypress 'cy.' global, other support configurations
│ ├── index.ts
│ ├── nav.ts
│ ├── project.ts
│ ├── README.md
│ └── selectors.ts
├── fixtures <--- mock data
│ └── example.json
├── plugins
│ └── index.js <--- webpack-preprocessor, enviornment variables, baseUrl, custom tasks
├── tests <--- test suites
│ ├── crud
│ │ └── namespace-crud.cy.ts
│ └── monitoring
│ └── monitoring.cy.ts
└── views <--- helper objects containing assertions and commands
├── details-page.ts
├── list-page.ts
├── form.ts
└── modal.ts