This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.07 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
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
68
69
70
71
72
{
"name": "sc-end-to-end-tests",
"version": "28.4.0",
"description": "A platform independent debuggable BDD Javascript testing framework. It's simple, easy to use and not dependant to any other tool or library, using Nodejs, webdriverio and cucumber-js",
"license": "Apache-2.0",
"keywords": [
"api",
"api testing",
"bdd",
"browserstack",
"cucumber",
"cucumber-js",
"javascript",
"framework",
"functional testing",
"tdd",
"testing",
"testing-framework",
"webdriver",
"webdriverio"
],
"repository": {
"type": "git",
"url": "https://github.com/hpi-schul-cloud/end-to-end-tests"
},
"engines": {
"node": ">= 10.15.0",
"npm": ">= 6.4.1"
},
"main": "index.js",
"scripts": {
"test": "node index.js -d --tags @test",
"test:all": "node index.js -d",
"test:dev": "node index.js -d -k",
"test:courses_and_topics": "node index.js -d --tags @courses_and_topics",
"test:management": "node index.js -d --tags @management",
"test:tasks_and_other": "node index.js -d --tags @tasks_and_other",
"test:navi_user_settings": "node index.js -d --tags @navi_user_settings",
"test:stable": "node index.js -d --tags @stableTest",
"test:unstable": "node index.js -d --tags @unstableTest",
"selenium": "npx selenium-standalone install && npx selenium-standalone start"
},
"homepage": "https://github.com/hpi-schul-cloud/end-to-end-tests#readme",
"dependencies": {
"@cucumber/cucumber": "^7.3.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"axios": "^0.21.4",
"browserstack-local": "^1.4.8",
"chai": "^4.3.4",
"clean": "^4.0.2",
"commander": "^8.2.0",
"cucumber-html-reporter": "^5.5.0",
"fs-extra": "^10.0.0",
"merge": "^2.1.1",
"node-dir": "^0.1.17",
"node-resemble-js": "^0.2.0",
"nodemailer": "^6.6.5",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"require-dir": "^1.2.0",
"selenium-standalone": "^9.3.3",
"webdriverio": "^7.13.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chromedriver": "^122.0.3",
"geckodriver": "^2.0.4",
"glob": "^7.2.0",
"reuse-cucumber-scenarios": "^1.1.7",
"util-arity": "^1.1.0"
}
}