Browse Source
Merge pull request #5688 from Budibase/fix/budibase_ci_cypress
Add test:e2e:ci:record variant
pull/5699/head
Rory Powell
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
2 deletions
.github/workflows/smoke_test.yaml
package.json
packages/builder/package.json
@ -32,7 +32,7 @@ jobs:
uses : cypress-io/github-action@v2
with:
install : false
command : yarn test:e2e:ci
command : yarn test:e2e:ci:record
env:
CYPRESS_RECORD_KEY : ${{ secrets.CYPRESS_RECORD_KEY }}
@ -47,6 +47,7 @@
"lint:fix" : "yarn run lint:fix:prettier && yarn run lint:fix:eslint" ,
"test:e2e" : "lerna run cy:test --stream" ,
"test:e2e:ci" : "lerna run cy:ci --stream" ,
"test:e2e:ci:record" : "lerna run cy:ci:record --stream" ,
"build:specs" : "lerna run specs" ,
"build:docker" : "lerna run build:docker && npm run build:docker:proxy:compose && cd hosting/scripts/linux/ && ./release-to-docker-hub.sh $BUDIBASE_RELEASE_VERSION && cd -" ,
"build:docker:proxy" : "docker build hosting/proxy -t proxy-service" ,
@ -13,9 +13,11 @@
"cy:setup:ci" : "node ./cypress/setup.js" ,
"cy:open" : "cypress open" ,
"cy:run" : "cypress run" ,
"cy:run:ci" : "xvfb-run cypress run --headed --browser chrome --record" ,
"cy:run:ci" : "xvfb-run cypress run --headed --browser chrome" ,
"cy:run:ci:record" : "xvfb-run cypress run --headed --browser chrome --record" ,
"cy:test" : "start-server-and-test cy:setup http://localhost:4100/builder cy:run" ,
"cy:ci" : "start-server-and-test cy:setup:ci http://localhost:4100/builder cy:run:ci" ,
"cy:ci:record" : "start-server-and-test cy:setup:ci http://localhost:4100/builder cy:run:ci:record" ,
"cy:debug" : "start-server-and-test cy:setup http://localhost:4100/builder cy:open" ,
"cy:debug:ci" : "start-server-and-test cy:setup:ci http://localhost:4100/builder cy:open"
} ,