1
0
Fork 0
mirror of synced 2024-06-01 10:09:48 +12:00
budibase/qa-core
2023-04-02 21:57:28 +01:00
..
scripts update test report script to read the right jest test file 2023-03-30 10:55:04 +01:00
src lint 2023-03-31 15:33:34 +01:00
.env updating host and accounts env vars 2023-04-02 21:57:28 +01:00
.gitignore qa-core job tidy up 2023-03-31 12:15:24 +01:00
docker-compose.yaml adding startup script for local 2022-09-25 23:43:37 +01:00
package.json qa-core job tidy up 2023-03-31 12:15:24 +01:00
README.md Update readme 2023-03-26 18:12:26 +01:00
tsconfig.json QA Core tests for app creation 2022-10-01 02:54:51 +01:00
yarn.lock Bump @sideway/formula from 3.0.0 to 3.0.1 in /qa-core 2023-03-13 09:47:40 +00:00

QA Core API Tests

The QA Core API tests are a jest suite that run directly against the budibase backend APIs.

Auto Setup

You can run the whole test suite with one command, that spins up the budibase server and runs the jest tests:

yarn api:test

Setup Server Only

You can also just stand up the budibase server alone.

yarn api:server:setup

Run Tests

If you configured the server using the previous command, you can run the whole test suite by using:

yarn test

for watch mode, where the tests will run on every change:

yarn test:watch

To run tests locally against a cloud service you can use the command: yarn run api:test:local

To run the tests in CI, it assumes the correct environment variables are set, and the server is already running. Use the command: yarn run api:test:ci

To run the nightly tests against the QA environment, use the command: yarn run api:test:nightly