update cypress ci settings

This commit is contained in:
Felipe Knorr Kuhn
2021-07-15 10:20:30 -07:00
parent be17cae130
commit e991f55357

View File

@@ -38,12 +38,15 @@
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e:ci": "npm run cypress:run:ci",
"dev:ssr": "npm run generate-config && ng run mempool:serve-ssr",
"serve:ssr": "node server.run.js",
"build:ssr": "npm run build && ng run mempool:server:production && ./node_modules/typescript/bin/tsc server.run.ts",
"prerender": "ng run mempool:prerender",
"cypress:open": "concurrently \"ng serve -c local-prod\" \"cypress open\" --kill-others",
"cypress:run": "concurrently \"ng serve -c local-prod\" \"cypress run\" --kill-others"
"cypress:run": "concurrently \"ng serve -c local-prod\" \"cypress run\" --kill-others",
"cypress:open:ci": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && concurrently \"ng serve -c local-prod\" \"cypress open\" --kill-others",
"cypress:run:ci": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && concurrently \"ng serve -c local-prod\" \"cypress run\" --kill-others"
},
"dependencies": {
"@angular/animations": "~11.2.8",