chore(tests): fix vitest can't terminate worker (#2644)

pull/2638/head
Joaquín Sánchez 2024-03-04 17:41:38 +01:00 zatwierdzone przez GitHub
rodzic edfbe2c3ed
commit 0fa87f71a4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 33 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ jobs:
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: pnpm
- name: 📦 Install dependencies

Wyświetl plik

@ -211,6 +211,30 @@ vi.mock('vue-router', async () => {
}
})
vi.mock('@vueuse/shared', async () => {
const vueuseShared = await import('@vueuse/shared')
// mock pausableWatch and watchPausable: vitest process hangs from time to time
return {
...vueuseShared,
pausableWatch: () => {
return {
stop: () => {},
pause: () => {},
resume: () => {},
isActive: readonly(ref(true)),
}
},
watchPausable: () => {
return {
stop: () => {},
pause: () => {},
resume: () => {},
isActive: readonly(ref(true)),
}
},
}
})
mockComponent('ContentMentionGroup', {
setup(props, { slots }) {
return () => h('mention-group', null, { default: () => slots?.default?.() })

Wyświetl plik

@ -10,5 +10,13 @@ export default defineVitestConfig({
setupFiles: [
'/tests/setup.ts',
],
environmentOptions: {
nuxt: {
mock: {
indexedDb: true,
intersectionObserver: true,
},
},
},
},
})