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