diff --git a/frontend/package.json b/frontend/package.json index 902417956..845112ccc 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -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",