-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.74 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "webdriverio_autotest_framework",
"version": "1.0.0",
"description": "WebdriverIO Autotest Framework",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts ./src ./config",
"selenium": "docker-compose up -d",
"selenium:stop": "docker-compose down -v",
"test": "npm run test:run",
"test:run:local:chrome": "npm run selenium:stop && npm run report:clean && npm run test:local:chrome && npm run report || npm run report",
"test:run:local:firefox": "npm run selenium:stop && npm run report:clean && npm run test:local:firefox && npm run report || npm run report",
"test:run": "node ./node_modules/@wdio/cli/bin/wdio.js --spec",
"test:local:chrome": "node ./node_modules/@wdio/cli/bin/wdio.js ./config/wdio.LOCAL.CHROME.conf.js --spec",
"test:local:firefox": "node ./node_modules/@wdio/cli/bin/wdio.js ./config/wdio.LOCAL.FIREFOX.conf.js --spec",
"report": "./node_modules/.bin/allure generate --clean ./report/allure-results -o ./report/allure-report && allure open ./report/allure-report",
"report:ci": "./node_modules/.bin/allure generate ./report/allure-results --clean -o ./report/allure-report",
"report:clean": "rimraf ./report",
"ci:build": "docker-compose -f docker-compose.ci.yml build",
"ci": "docker-compose -f docker-compose.ci.yml up --force-recreate --renew-anon-volumes --abort-on-container-exit --exit-code-from node"
},
"keywords": [
"automation",
"webdriverio",
"javascript",
"typescript",
"webdriver",
"node",
"test",
"autotests",
"selenium",
"azure-devops",
"circleci",
"cucumber"
],
"author": "Aliaksei Patotski",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/cucumber": "^6.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@wdio/allure-reporter": "^6.0.14",
"@wdio/cli": "^6.0.16",
"@wdio/cucumber-framework": "^6.0.16",
"@wdio/local-runner": "^6.0.16",
"@wdio/logger": "^6.0.16",
"@wdio/selenium-standalone-service": "^6.0.16",
"@wdio/spec-reporter": "^6.0.16",
"@wdio/sync": "^6.0.16",
"allure-commandline": "^2.13.0",
"chai": "^4.2.0",
"cucumber-tsflow": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"rimraf": "^3.0.2",
"selenium-standalone": "^6.17.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"webdriverio": "^6.0.16"
},
"engines": {
"node": ">=10.0.0"
}
}