-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1014 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "decision-engine-cypress-tests",
"version": "1.0.0",
"description": "Cypress tests for Decision Engine routing flows",
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:headless": "cypress run --headless",
"test:api": "cypress run --spec 'cypress/e2e/api/**/*.cy.js'",
"test:ui": "cypress run --spec 'cypress/e2e/ui/**/*.cy.js'",
"test:analytics": "cypress run --spec 'cypress/e2e/api/analytics-api.cy.js,cypress/e2e/ui/analytics-page.cy.js,cypress/e2e/ui/payment-audit.cy.js,cypress/e2e/ui/dashboard-overview.cy.js'",
"test:all": "cypress run --spec 'cypress/e2e/**/*.cy.js'",
"test:e2e": "node cypress/scripts/run-e2e.js all",
"test:e2e:source": "node cypress/scripts/run-e2e.js source",
"test:e2e:docker": "node cypress/scripts/run-e2e.js docker",
"test": "npm run test:all"
},
"devDependencies": {
"cypress": "^13.6.0",
"@cypress/grep": "^4.0.1"
},
"dependencies": {
"uuid": "^9.0.1"
}
}