diff --git a/frameworks/javascript/prisma/run b/frameworks/javascript/prisma/run index e8d73045..8c43d055 100755 --- a/frameworks/javascript/prisma/run +++ b/frameworks/javascript/prisma/run @@ -7,6 +7,13 @@ export TEST_MYSQL_URI="${TEST_MYSQL_BASE_URI}/${VT_DATABASE}?sslmode=false"; export TEST_MARIADB_BASE_URL="${TEST_MYSQL_BASE_URI}"; export TEST_MARIADB_URI="${TEST_MYSQL_URI}"; -timeout 3m pnpm run jest integration/mysql -- --detectOpenHandles --maxConcurrency=1; -timeout 3m pnpm run jest integration/mariadb -- --detectOpenHandles --maxConcurrency=1; +timeout 3m pnpm run jest integration/mysql -- --detectOpenHandles --maxConcurrency=1 || true; +timeout 3m pnpm run jest integration/mariadb -- --detectOpenHandles --maxConcurrency=1 || true; +# Client Tests + +cd ../client + +export TEST_MYSQL_ISOLATED_URI="${TEST_MYSQL_URI}"; + +timeout 10m pnpm run test -- --detectOpenHandles --testPathIgnorePatterns src/__tests__/types/types.test.ts || true;