test: increase timing threshold for flaky updateMany test

This commit is contained in:
David Snelling 2026-01-07 10:44:59 -08:00
parent 5885de7aac
commit 9fbefd4220

View file

@ -205,7 +205,7 @@ describe('Brainy Batch Operations', () => {
await brain.updateMany({ items: updates })
const duration = Date.now() - startTime
expect(duration).toBeLessThan(2500) // v5.4.0: Type-first storage with metadata extraction
expect(duration).toBeLessThan(4000) // v5.4.0: Type-first storage with metadata extraction (increased for CI variability)
// Verify sample
const sample = await brain.get(manyIds[50])