forked from kyma-project/busola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.17 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
{
"name": "ui-integration-tests",
"description": "UI Integration tests for Busola",
"scripts": {
"start": "cypress open",
"start:local": "CYPRESS_LOCAL_DEV=true cypress open",
"test:cluster": "cypress run --spec \"tests/cluster/*.spec.js,tests/extensibility/*.spec.js\" --browser chromium",
"test:namespace": "cypress run --spec \"tests/namespace/*.spec.js\" --browser chromium",
"test:cluster:local": "CYPRESS_LOCAL_DEV=true cypress run --spec \"tests/cluster/*.spec.js,tests/extensibility/*.spec.js\" --browser chrome",
"test:namespace:local": "CYPRESS_LOCAL_DEV=true cypress run --spec \"tests/namespace/*.spec.js\" --browser chrome",
"test:local": "CYPRESS_LOCAL_DEV=true $(npm bin)/cypress run --browser chrome",
"test:local-docker": "CYPRESS_DOMAIN=http://localhost:3001 $(npm bin)/cypress run --browser chrome",
"test:local-smoke-docker": "CYPRESS_DOMAIN=http://localhost:3001 $(npm bin)/cypress run --browser chrome -C cypress-smoke.js"
},
"devDependencies": {
"cypress": "^13.8.1",
"cypress-file-upload": "^5.0.8",
"cypress-plugin-tab": "^1.0.5",
"js-yaml": "^4.1.0"
},
"optionalDependencies": {
"cypress": "^13.6.1"
}
}