-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.49 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.49 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
35
36
37
38
{
"name": "qoverautomationchallenge",
"version": "1.0.0",
"description": "This project contains the resolution for test automation challenge from qover",
"main": "index.js",
"scripts": {
" --- CYPRESS SCRIPTS ---- ": "",
"cy:open": "cypress open",
"test:ui": "cypress run --browser chrome --spec 'cypress/tests/ui/**spec.js'",
"test:ui:headless": "cypress run --browser chrome --headless --spec 'cypress/tests/ui/**spec.js'",
"test:api": "cypress run --spec 'cypress/tests/api/**spec.js'",
"test:ui:headless:mocha": "yarn cy:clean:reports; cypress run --browser chrome --headless --spec 'cypress/tests/ui/**spec.js'; yarn cy:reports",
"test:api:mocha": "yarn cy:clean:reports; cypress run --spec 'cypress/tests/api/**spec.js'; yarn cy:reports",
" --- MOCHAWESOME REPORT SCRIPTS ---- ": "",
"cy:reports": "yarn cy:merge:reports; yarn cy:final:reports",
"cy:clean:reports": "rm -rf cypress/reports/*",
"cy:merge:reports": "mochawesome-merge cypress/reports/*.json > cypress/reports/output.json",
"cy:final:reports": "marge cypress/reports/output.json --reportDir cypress/reports/"
},
"keywords": [
"Automation",
"JS",
"Cypress",
"frontend"
],
"author": "William Oliveira",
"license": "ISC",
"devDependencies": {
"cypress": "^8.6.0",
"cypress-waitfor": "^1.1.0",
"cypress-xpath": "^1.6.2",
"dayjs": "^1.10.7",
"mocha": "^9.1.3",
"mochawesome": "^6.3.1",
"mochawesome-merge": "^4.2.0",
"yarn": "^1.22.17"
}
}