mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-22 11:31:39 +03:00
525603227a
* Add default db schema for seeded workspace * fix * add if not exists * add metadata seeds * use setup-db for e2e * fix tests
9 lines
195 B
Bash
Executable File
9 lines
195 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# src/run-integration.sh
|
|
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
source $DIR/set-env-test.sh
|
|
|
|
yarn database:setup && yarn database:reset
|
|
yarn jest --config ./test/jest-e2e.json
|