// jest setup: polyfill structuredClone for fake-indexeddb if (typeof globalThis.structuredClone !== 'function') { globalThis.structuredClone = (obj) => JSON.parse(JSON.stringify(obj)); }