Minor Changes
-
#13623
b156b2eThanks @penalosa! - Addreset()andabortAllDurableObjects()helpers tocloudflare:testThe
reset()helper deletes all data from attached bindings, and resets all Durable Object instances. This is useful for resetting state between test blocks.The
abortAllDurableObjects()helper resets all Durable Object instances without deleting persisted data.import { reset } from "cloudflare:test"; import { afterEach } from "vitest"; afterEach(async () => { await reset(); });