1
0
Fork 0
mirror of synced 2024-09-08 05:31:47 +12:00

Improve testing

This commit is contained in:
adrinr 2023-02-28 15:03:18 +01:00
parent c1462a7c9c
commit b922fc3b00

View file

@ -81,6 +81,10 @@ describe("writethrough", () => {
2, 2,
"bb-warn: Ignoring redlock conflict in write-through cache" "bb-warn: Ignoring redlock conflict in write-through cache"
) )
const output = await db.get(current._id)
expect(output.value).toBe(4)
expect(output._rev).toBe(newRev)
}) })
}) })
}) })