-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 895 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "codeceptjstestexamples",
"version": "1.0.0",
"description": "Examples of using CodeceptJS BDD tests",
"author": "Dominic Fraser",
"license": "ISC",
"scripts": {
"lint:js": "eslint . --ext js,jsx",
"lint:js:fix": "eslint . --ext js,jsx --fix",
"test:e2e:includeFlight": "codeceptjs run --steps --config=./e2eTests/configs/puppeteer_include_i.conf.js",
"test:e2e:pause": "codeceptjs run --steps --config=./e2eTests/configs/puppeteer_pause.conf.js",
"test:e2e:ch:puppeteer": "codeceptjs run --steps --config=./e2eTests/configs/puppeteer_ch.conf.js",
"test:e2e:ch:webdriver": "codeceptjs run --steps --config=./e2eTests/configs/webdriver_ch.conf.js"
},
"devDependencies": {
"codeceptjs": "^2.0.4",
"date-fns": "^1.30.1",
"eslint-config-skyscanner-with-prettier": "^0.7.0",
"puppeteer": "^1.12.1",
"webdriverio": "^5.4.13"
}
}