diff --git a/.github/workflows/release-latest.yaml b/.github/workflows/release-latest.yaml index 5801eea3c..4c410faee 100644 --- a/.github/workflows/release-latest.yaml +++ b/.github/workflows/release-latest.yaml @@ -117,6 +117,8 @@ jobs: MYSQL_CONNECTION_STRING: mysql://root:root@localhost:3306/drizzle PLANETSCALE_CONNECTION_STRING: ${{ secrets.PLANETSCALE_CONNECTION_STRING }} NEON_CONNECTION_STRING: ${{ secrets.NEON_CONNECTION_STRING }} + XATA_API_KEY: ${{ secrets.XATA_API_KEY }} + XATA_BRANCH: ${{ secrets.XATA_BRANCH }} LIBSQL_URL: file:local.db run: | if [[ "${{ matrix.package }}" == "drizzle-orm" ]]; then diff --git a/integration-tests/tests/xata-http.test.ts b/integration-tests/tests/xata-http.test.ts index a30cb8cab..da2e3f1bd 100644 --- a/integration-tests/tests/xata-http.test.ts +++ b/integration-tests/tests/xata-http.test.ts @@ -2322,7 +2322,7 @@ test('insert undefined', async () => { await db.execute(sql`drop table ${users}`); }); -test.only('update undefined', async () => { +test('update undefined', async () => { const users = pgTable('users', { id: serial('id').primaryKey(), name: text('name'),