-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 2.52 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cypress-framework",
"version": "1.0.0",
"description": "cypress test automation framework",
"main": "index.js",
"scripts": {
"results-junit:delete": "rm -rf cypress/results/junit/* || true",
"results-junit:combine": "jrm cypress/results/junit/combined-report.xml \"cypress/results/junit/*.xml\"",
"report:pre": "npm run results-junit:delete",
"report:post": "npm run results-junit:combine",
"test:report": "npm run report:pre && npx cypress run && npm run report:post",
"test:all": "npx cypress run",
"test:chrome": "npx cypress run --browser chrome",
"test:firefox": "npx cypress run --browser firefox",
"test:edge": "npx cypress run --browser edge",
"test:regression": "npx cypress run --env grepTags=@regression",
"test:smoke": "npx cypress run --env grepTags=@smoke",
"test:local": "npx cypress run --env environmentName=\"local\"",
"test:dev": "npx cypress run --env environmentName=\"dev\"",
"test:qa": "npx cypress run --env environmentName=\"qa\"",
"test:stage": "npx cypress run --env environmentName=\"stage\"",
"test:prod": "npx cypress run --env environmentName=\"prod\"",
"test:registration": "npx cypress run --spec cypress/e2e/tests/RegistrationTest.cy.js",
"test:login": "npx cypress run --spec cypress/e2e/tests/LoginTest.cy.js",
"test:productData": "npx cypress run --spec cypress/e2e/tests/ProductDataTest.cy.js",
"test:addToCart": "npx cypress run --spec cypress/e2e/tests/AddToCartTest.cy.js",
"test:wishlist": "npx cypress run --spec cypress/e2e/tests/WishlistTest.cy.js",
"test:productSearch": "npx cypress run --spec cypress/e2e/tests/ProductsSearchTest.cy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itkhanz/Cypress-Framework.git"
},
"keywords": [
"cypress"
],
"author": "itkhanz",
"license": "ISC",
"bugs": {
"url": "https://github.com/itkhanz/Cypress-Framework/issues"
},
"homepage": "https://github.com/itkhanz/Cypress-Framework#readme",
"devDependencies": {
"@cypress/grep": "^3.1.5",
"@faker-js/faker": "^8.0.2",
"cypress": "^13.0.0",
"cypress-mochawesome-reporter": "^3.5.1",
"cypress-multi-reporters": "^1.6.3",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"junit-report-merger": "^6.0.2",
"mocha-junit-reporter": "^2.2.1"
}
}