mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 08:29:57 +00:00
chore(tests): fix vitest can't terminate worker (#2644)
This commit is contained in:
parent
edfbe2c3ed
commit
0fa87f71a4
3 changed files with 33 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- run: corepack enable
|
- run: corepack enable
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 20
|
||||||
cache: pnpm
|
cache: pnpm
|
||||||
|
|
||||||
- name: 📦 Install dependencies
|
- name: 📦 Install dependencies
|
||||||
|
|
|
@ -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', {
|
mockComponent('ContentMentionGroup', {
|
||||||
setup(props, { slots }) {
|
setup(props, { slots }) {
|
||||||
return () => h('mention-group', null, { default: () => slots?.default?.() })
|
return () => h('mention-group', null, { default: () => slots?.default?.() })
|
||||||
|
|
|
@ -10,5 +10,13 @@ export default defineVitestConfig({
|
||||||
setupFiles: [
|
setupFiles: [
|
||||||
'/tests/setup.ts',
|
'/tests/setup.ts',
|
||||||
],
|
],
|
||||||
|
environmentOptions: {
|
||||||
|
nuxt: {
|
||||||
|
mock: {
|
||||||
|
indexedDb: true,
|
||||||
|
intersectionObserver: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue