forked from openshift-assisted/assisted-installer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.08 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": "@openshift-assisted/ui-lib-tests",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@openshift-assisted/ui-lib": "workspace:*",
"@testing-library/cypress": "^9.0.0",
"@types/lodash": "^4.14.121",
"cypress": "13.6.2",
"cypress-file-upload": "5.0.8",
"cypress-fill-command": "^1.0.2",
"lodash": "^4.17.15",
"start-server-and-test": "^2.0.0"
},
"scripts": {
"build:assisted-ui": "yarn workspace @openshift-assisted/assisted-ui run build",
"preview:assisted-ui": "yarn workspace @openshift-assisted/assisted-ui run preview",
"serve:assisted-ui": "yarn workspace @openshift-assisted/assisted-ui run serve",
"cy:run": "yarn run start-test 'yarn preview:assisted-ui' http://localhost:4173 'cypress run --headless --browser chrome'",
"cy:open": "yarn build:all && yarn run start-test 'yarn preview:assisted-ui' http://localhost:4173 'cypress open'",
"cy:open:dev": "yarn run start-test 'yarn serve:assisted-ui --port 4173' http://localhost:4173 'cypress open -c defaultCommandTimeout=15000'"
}
}