-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.46 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
{
"name": "crowdfunding-platform-autotest",
"version": "0.0.1",
"description": "A simple automation test project for a crowdfunding platform with selenium-webdriver",
"main": "index.js",
"scripts": {
"test:regression": "npx mocha Tests/Crowdfunding --recursive --timeout=30000 --reporter mochawesome --require mochawesome/register --require Configs/RootHooks.js",
"test:smoketest": "npx mocha Tests/Crowdfunding --recursive --timeout=30000 --reporter mochawesome --require Configs/RootHooks.js --grep @smoketest",
"test:implement": "npx mocha Tests/Crowdfunding/ --recursive --timeout=30000 --reporter mochawesome --require Configs/RootHooks.js --grep @intest",
"test:regression-parallel": "npx mocha Tests/Crowdfunding/ --recursive --parallel --timeout=30000 --reporter mochawesome --require mochawesome/register --require Configs/RootHooks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jeff406/crowdfunding-platform-autotest.git"
},
"keywords": [
"mocha",
"chai",
"selenium",
"webdriver",
"crowdfunding-autotest"
],
"author": "Thai Le",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jeff406/crowdfunding-platform-autotest/issues"
},
"homepage": "https://github.com/Jeff406/crowdfunding-platform-autotest#readme",
"dependencies": {
"chai": "^4.3.7",
"chromedriver": "^114.0.2",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"selenium-webdriver": "^4.10.0"
}
}