1
0
mirror of synced 2026-05-20 17:28:31 +08:00
Files
cook/test/setup.ts
YunYouJun 6459561957 fix: use StorageSerializers.set + triggerRef for Set reactivity
- Use @vueuse/core StorageSerializers.set for proper Set serialization
- Add triggerRef after Set mutations (add/delete/clear) for Vue reactivity
- Mock useStorage in test setup to avoid localStorage state pollution
2026-04-13 01:41:14 +08:00

33 lines
774 B
TypeScript

import { vi } from 'vitest'
import { ref } from 'vue'
import 'fake-indexeddb/auto'
// Mock useScriptGoogleTagManager globally
vi.stubGlobal('useScriptGoogleTagManager', () => ({
proxy: {
dataLayer: {
push: vi.fn(),
},
},
}))
// Mock @vueuse/core useStorage to use plain ref (no localStorage) in tests
vi.mock('@vueuse/core', async () => {
const actual = await vi.importActual('@vueuse/core')
return {
...actual,
useStorage: (_key: string, defaultValue: unknown) => ref(
typeof defaultValue === 'function' ? defaultValue() : defaultValue,
),
}
})
// Mock onMounted to prevent Vue warnings in tests
vi.mock('vue', async () => {
const actual = await vi.importActual('vue')
return {
...actual,
onMounted: vi.fn(),
}
})