twenty/server/scripts/run-integration.sh

20 lines
489 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# src/run-integration.sh
2023-07-28 01:22:10 +03:00
DIR="$(cd "$(dirname "$0")" && pwd)"
2023-07-28 01:38:50 +03:00
source $DIR/set-env-test.sh
2023-07-28 01:22:10 +03:00
npx ts-node ./test/utils/check-db.ts
EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ]; then
echo '🟡 - Database is not initialized. Running migrations...'
npx ts-node ./test/utils/setup-db.ts
npx prisma migrate reset --force && yarn prisma:generate
yarn typeorm:migrate
else
echo "🟢 - Database is already initialized."
fi
yarn jest --config ./test/jest-e2e.json