forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.1 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
{
"name": "ui-tests",
"version": "0.1.3",
"description": "UI Integration tests for the Kyma ",
"main": "index.js",
"scripts": {
"test": "LOCAL_DEV=true OUTSIDE_CLUSTER=true PASSWORD=$(kubectl get secret admin-user -n kyma-system -o jsonpath='{.data.password}' | base64 -D) jest -i --forceExit --detectOpenHandles",
"test:cluster": "jest -i --forceExit --detectOpenHandles",
"test:cluster-outside": "OUTSIDE_CLUSTER=true PASSWORD=$(kubectl get secret admin-user -n kyma-system -o jsonpath='{.data.password}' | base64 -D) jest -i --forceExit --detectOpenHandles",
"test:watch": "LOCAL_DEV=true jest --watch",
"test:watch:cluster": "jest --watch"
},
"devDependencies": {
"@kubernetes/client-node": "^0.8.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"faker": "^4.1.0",
"jest": "^23.6.0",
"promise-retry": "^1.1.1",
"puppeteer": "^1.17.0",
"request": "^2.88.0"
},
"jest": {
"testRegex": "/tests/(console-basic-test|docs-ui-test|logging-test).jsx?$",
"setupTestFrameworkScriptFile": "<rootDir>/jest-setup.js"
}
}