fix(windows): stabilize covered native fixtures

This commit is contained in:
Tianyi Cui
2026-08-09 15:42:01 +08:00
parent 03ba3c506f
commit 2abc132af5
7 changed files with 11 additions and 11 deletions
@@ -1050,7 +1050,7 @@ describe('SQLite reconciliation and source lifecycle', () => {
.rejects.toThrow(expectCode('SESSION_QUERY_SOURCE_CONFLICT'))
})
it('preserves unchanged persisted generations while reconciling new, changed, and deleted rows', async () => {
it('preserves unchanged persisted generations while reconciling new, changed, and deleted rows', { timeout: 20_000 }, async () => {
const path = await temporaryPath()
const unchanged = header('unchanged')
const changed = header('changed')
@@ -1236,7 +1236,7 @@ describe('SQLite schema, cancellation, and real persistence integration', () =>
expect(ctx.sessionQuery).toBeUndefined()
})
it('resets a recognized incompatible schema but refuses unknown or foreign tables', async () => {
it('resets a recognized incompatible schema but refuses unknown or foreign tables', { timeout: 20_000 }, async () => {
const stalePath = await temporaryPath('stale.db')
const staleOwner = await liveContext({ path: stalePath })
await (staleOwner.sessionQuery as SessionQuerySqlite).close()