We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6575a6e commit 40a74cbCopy full SHA for 40a74cb
packages/runtime-core/__tests__/hmr.spec.ts
@@ -222,10 +222,10 @@ describe('hot module replacement', () => {
222
test('reload KeepAlive slot in Transition', async () => {
223
const root = nodeOps.createElement('div')
224
const childId = 'test-transition-keep-alive-reload'
225
- const unmountSpy = jest.fn()
226
- const mountSpy = jest.fn()
227
- const activeSpy = jest.fn()
228
- const deactiveSpy = jest.fn()
+ const unmountSpy = vi.fn()
+ const mountSpy = vi.fn()
+ const activeSpy = vi.fn()
+ const deactiveSpy = vi.fn()
229
230
const Child: ComponentOptions = {
231
__hmrId: childId,
0 commit comments