-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ebaytest",
"description": "Test ebay",
"version": "0.0.1",
"devDependencies": {
"codeceptjs": "^1.4.2",
"mocha": "^5.2.0",
"mochawesome": "^3.0.3",
"webdriverio": "^4.13.2"
},
"scripts": {
"start:selenium": "selenium-standalone install --config=./config/seleniumConfig.js && selenium-standalone start --config=./config/seleniumConfig.js",
"test": "codeceptjs run-multiple parallel --all --steps --reporter mochawesome",
"start:seleniumdocker": "docker-compose -f docker-compose-selenium.yaml -p selenium up",
"test:docker": "docker run -it --rm -v $PWD:/tests/ --link selenium-hub:selenium --net selenium_default codeception/codeceptjs codeceptjs run-multiple parallel --profile 'selenium-hub' --all --steps --reporter mochawesome",
"test:insidedocker": "codeceptjs run-multiple parallel --profile 'selenium-hub' --all --steps --reporter mochawesome"
},
"dependencies": {
"selenium-standalone": "^6.15.3"
}
}