1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Merge branch 'account-api-tests' of https://github.com/Budibase/budibase into account-api-tests

This commit is contained in:
Mitch-Budibase 2023-07-19 17:31:49 +01:00
commit 9f30851613
2 changed files with 5 additions and 3 deletions

View file

@ -159,7 +159,7 @@ jobs:
run: |
cd qa-core
yarn setup
yarn test:ci
yarn serve:test:ci
env:
BB_ADMIN_USER_EMAIL: admin
BB_ADMIN_USER_PASSWORD: admin

View file

@ -15,8 +15,10 @@
"test:watch": "yarn run test --watch",
"test:debug": "DEBUG=1 yarn run test",
"test:notify": "node scripts/testResultsWebhook",
"test:smoke": "yarn run test --testPathIgnorePatterns=/.+\\.integration\\.spec\\.ts",
"test:ci": "start-server-and-test dev:built http://localhost:4001/health test:smoke",
"test:cloud:prod": "yarn run test --testPathIgnorePatterns=/.+\\.integration\\.spec\\.ts",
"test:cloud:qa": "yarn run test",
"test:ci": "yarn run test --testPathIgnorePatterns=/.+\\.integration\\.spec\\.ts /account-api/",
"serve:test:ci": "start-server-and-test dev:built http://localhost:4001/health test:smoke",
"serve": "start-server-and-test dev:built http://localhost:4001/health",
"dev:built": "cd ../ && yarn dev:built"
},