-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 2.78 KB
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
26
27
28
29
30
31
32
33
34
{
"name": "indices-api-testing",
"version": "1.0.0",
"private": true,
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:report": "cypress run --reporter mochawesome --reporter-options reportDir=cypress/results,overwrite=false,html=true,json=true",
"report:merge": "mochawesome-merge cypress/results/*.json -o cypress/results/mochawesome-final.json",
"report:html": "marge cypress/results/mochawesome-final.json -f index -o vercel-dist",
"report:publish": "npm run report:merge && npm run report:html",
"test:symbols": "cypress run --spec cypress/e2e/symbols.cy.js",
"test:latest": "cypress run --spec cypress/e2e/latest/**/*.cy.js",
"test:latest:general": "cypress run --spec cypress/e2e/latest/latest.cy.js",
"test:latest:limits": "cypress run --spec cypress/e2e/latest/pro.cy.js,cypress/e2e/latest/proPlus.cy.js,cypress/e2e/latest/professionalAdvanced.cy.js,cypress/e2e/latest/plus.cy.js,cypress/e2e/latest/elite.cy.js,cypress/e2e/latest/elitePlus.cy.js,cypress/e2e/latest/premium.cy.js",
"test:historical": "cypress run --spec cypress/e2e/historical/**/*.cy.js",
"test:historical:general": "cypress run --spec cypress/e2e/historical/historical.cy.js",
"test:historical:limits": "cypress run --spec cypress/e2e/historical/pro.cy.js,cypress/e2e/historical/proPlus.cy.js,cypress/e2e/historical/professionalAdvanced.cy.js,cypress/e2e/historical/plus.cy.js,cypress/e2e/historical/elite.cy.js,cypress/e2e/historical/elitePlus.cy.js,cypress/e2e/historical/premium.cy.js",
"test:convert": "cypress run --spec cypress/e2e/convert/**/*.cy.js",
"test:timeseries": "cypress run --spec cypress/e2e/timeseries/**/*.cy.js",
"test:timeseries:general": "cypress run --spec cypress/e2e/timeseries/timeseries.cy.js",
"test:timeseries:limits": "cypress run --spec cypress/e2e/timeseries/pro.cy.js,cypress/e2e/timeseries/proPlus.cy.js,cypress/e2e/timeseries/professionalAdvanced.cy.js,cypress/e2e/timeseries/plus.cy.js,cypress/e2e/timeseries/elite.cy.js,cypress/e2e/timeseries/elitePlus.cy.js,cypress/e2e/timeseries/premium.cy.js",
"test:fluctuation": "cypress run --spec cypress/e2e/fluctuation/**/*.cy.js",
"test:fluctuation:general": "cypress run --spec cypress/e2e/fluctuation/fluctuation.cy.js",
"test:fluctuation:limits": "cypress run --spec cypress/e2e/fluctuation/pro.cy.js,cypress/e2e/fluctuation/proPlus.cy.js,cypress/e2e/fluctuation/professionalAdvanced.cy.js,cypress/e2e/fluctuation/plus.cy.js,cypress/e2e/fluctuation/elite.cy.js,cypress/e2e/fluctuation/elitePlus.cy.js,cypress/e2e/fluctuation/premium.cy.js",
"test:ohlc": "cypress run --spec cypress/e2e/ohlc/**/*.cy.js"
},
"devDependencies": {
"cypress": "^14.3.2",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"mochawesome-report-generator": "^6.2.0"
}
}