|
10 | 10 | "app:admin:lint": "cd apps/admin && prettier --check ./src && eslint ./src", |
11 | 11 | "app:admin:fix": "cd apps/admin && prettier --write ./src && eslint --fix ./src", |
12 | 12 | "app:admin:cy:component": "cd tests/admin && cypress run --component --spec ../../apps/admin/unit-tests.cy.ts --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
| 13 | + "app:admin:cy:open": "cd tests/admin && cypress open --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
13 | 14 | "app:infra": "cd apps/infra && webpack serve --config=config/webpack.dev.js", |
14 | 15 | "app:infra:build": "cd apps/infra && webpack --config=config/webpack.prod.js", |
15 | 16 | "app:infra:lint": "cd apps/infra && prettier --check ./src && eslint ./src", |
16 | 17 | "app:infra:fix": "cd apps/infra && prettier --write ./src && eslint --fix ./src", |
17 | 18 | "app:infra:cy:component": "cd tests/infra && TZ=\"Asia/Kolkata\" cypress run --component --spec ../../apps/infra/unit-tests.cy.ts --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
| 19 | + "app:infra:cy:open": "cd tests/infra && cypress open --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
18 | 20 | "app:app-orch": "cd apps/app-orch && webpack serve --config=config/webpack.dev.js", |
19 | 21 | "app:app-orch:build": "cd apps/app-orch && webpack --config=config/webpack.prod.js", |
20 | 22 | "app:app-orch:lint": "cd apps/app-orch && prettier --check ./src && eslint ./src", |
21 | 23 | "app:app-orch:fix": "cd apps/app-orch && prettier --write ./src && eslint --fix ./src", |
22 | 24 | "app:app-orch:cy:component": "cd tests/app-orch && cypress run --component --spec ../../apps/app-orch/unit-tests.cy.ts --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
| 25 | + "app:app-orch:cy:open": "cd tests/app-orch && cypress open --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
23 | 26 | "app:root": "cd apps/root && webpack serve --config=config/webpack.dev.js", |
24 | 27 | "app:root:build": "cd apps/root && webpack --config=config/webpack.prod.js", |
25 | 28 | "app:root:lint": "cd apps/root && prettier --check ./src && eslint ./src", |
26 | 29 | "app:root:fix": "cd apps/root && prettier --write ./src && eslint --fix ./src", |
27 | 30 | "app:root:cy:component": "cd tests/root && cypress run --component --spec ../../apps/root/unit-tests.cy.ts --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
| 31 | + "app:root:cy:open": "cd tests/root && cypress open --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
28 | 32 | "app:cluster-orch": "cd apps/cluster-orch && webpack serve --config=config/webpack.dev.js", |
29 | 33 | "app:cluster-orch:build": "cd apps/cluster-orch && webpack --config=config/webpack.prod.js", |
30 | 34 | "app:cluster-orch:lint": "cd apps/cluster-orch && prettier --check ./src && eslint ./src", |
31 | 35 | "app:cluster-orch:fix": "cd apps/cluster-orch && prettier --write ./src && eslint --fix ./src", |
32 | 36 | "app:cluster-orch:cy:component": "cd tests/cluster-orch && cypress run --component --spec ../../apps/cluster-orch/unit-tests.cy.ts --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
| 37 | + "app:cluster-orch:cy:open": "cd tests/cluster-orch && cypress open --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
33 | 38 | "cypress:component": "cd tests && cypress open --component", |
34 | 39 | "library:lint": "prettier --check ./library && eslint ./library", |
35 | 40 | "library:fix": "cd library && prettier --write ./ && eslint --fix ./", |
36 | 41 | "library:cy:component": "cd tests/library && cypress run --component --spec ./unit-tests.cy.ts --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
| 42 | + "library:cy:open": "cd tests/library && cypress open --env ORCH_DEFAULT_PASSWORD=${ORCH_DEFAULT_PASSWORD}", |
37 | 43 | "tests:component": "cd tests && cypress open --component", |
38 | 44 | "tests:e2e": "cd tests && cypress open --e2e --env EN_UUID=398395da-c10e-7c47-9b4f-efb34c0b261e", |
39 | 45 | "tests:build": "cd tests && webpack build --config webpack.config.js", |
|
0 commit comments