You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump expired skipIf postpones to 2026-06-20 and fix oxlint no-useless-undefined
Today (2026-05-20) is the postpone date in five integration-test files for the
"Query error wrapping" / "Mappers: deep nullification" / "Same table name joined
between schemas" gates, so vitest started running them and they fail because sync
drivers (better-sqlite3, sqljs, postgres.js, mssql/tedious, cockroach pg) still
return raw driver errors instead of DrizzleQueryError. Per the repo's skipIf
convention (drizzle-orm/.claude/skills/tests), bump the dates to one month forward
rather than fix in-band: integration-tests/tests/{sqlite/sqlite-common,
pg/common-cache, pg/common-pt2, cockroach/common, mssql/mssql}.ts, plus the
@ts-ignore searchable-marker comment in pg/common-pt2.ts.
Also rewrite the no-useless-undefined violations in
drizzle-kit/tests/sdk/regressions/no-stdout.test.ts (process.exit mock
implementation): `() => undefined` to `() => {}` so the gate that ran lint on the
last green CI build (post-merge) passes. Behavior is identical; the spy still
swallows the exit call.
0 commit comments