-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.28 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
{
"name": "ALCHEMY",
"version": "1.0.0",
"description": "ALCHEMY Test Project",
"main": "index.js",
"author": "Muhammad",
"contributors": [
{
"name": "Muhammad Usman",
"email": "[email protected]"
}
],
"license": "ISC",
"devDependencies": {
"cypress": "^9.5.3",
"cypress-file-upload": "^4.1.1",
"cypress-log-to-output": "^1.1.2",
"cypress-mailslurp": "^1.3.0",
"cypress-multi-reporters": "^1.4.0",
"cypress-xpath": "^1.6.0",
"electron": "^11.5.0",
"faker": "^5.5.3",
"mailslurp-client": "^8.7.8",
"mocha": "^8.2.1",
"mochawesome": "^6.1.1",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.1.0",
"node-xlsx": "^0.15.0",
"prettier": "^2.5.1"
},
"scripts": {
"sanity-tests": "npx cypress run --headed --browser chrome; retval=$? ; npm run generate:html:report; exit $retval",
"clean:reports": "rm -rf mochawesome-report/",
"test": "npm run clean:reports && cypress run",
"merge:reports": "mochawesome-merge mochawesome-report/jsonFiles/*.json > mochawesome-report/output.json",
"create:html:report": "npx marge mochawesome-report/output.json --reportDir TestReport --inline",
"generate:html:report": "npm run merge:reports && npm run create:html:report"
}
}