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

This commit is contained in:
Joaquín Sánchez 2024-03-04 17:41:38 +01:00 committed by GitHub
parent edfbe2c3ed
commit 0fa87f71a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 33 additions and 1 deletions

View file

@ -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?.() })