-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.01 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
{
"name": "testcafe-tutorial-basics",
"version": "1.0.0",
"description": "Automated testing using testcafe",
"main": "index.js",
"scripts": {
"test:chrome": "testcafe chrome -s takeOnFails=true",
"test:chrome:4": "testcafe -c 4 chrome -s takeOnFails=true",
"test:chrome:headless": "testcafe chrome:headless -s takeOnFails=true",
"test:chrome:headless:4": "testcafe -c 4 chrome:headless -s takeOnFails=true",
"test:chrome:mobile": "testcafe chrome:emulation:device=iphone X -s takeOnFails=true",
"test:chrome:noPageCache": "testcafe chrome -s takeOnFails=true --disable-page-caching",
"test:firefox": " testcafe firefox -s takeOnFails=true",
"test:ie": "testcafe ie -s takeOnFails=true",
"test:edge": "testcafe edge -s takeOnFails=true",
"test:multibrowser": "testcafe chrome,firefox,ie,edge -s takeOnFails=true"
},
"author": "",
"license": "ISC",
"dependencies": {
"prettier": "^1.19.1",
"testcafe": "^1.8.1"
},
"devDependencies": {
"xpath-to-css": "^1.0.4"
}
}