Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangzhonghe authored and sxzz committed Aug 24, 2023
1 parent 6575a6e commit 40a74cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/runtime-core/__tests__/hmr.spec.ts
Expand Up @@ -222,10 +222,10 @@ describe('hot module replacement', () => {
test('reload KeepAlive slot in Transition', async () => {
const root = nodeOps.createElement('div')
const childId = 'test-transition-keep-alive-reload'
const unmountSpy = jest.fn()
const mountSpy = jest.fn()
const activeSpy = jest.fn()
const deactiveSpy = jest.fn()
const unmountSpy = vi.fn()
const mountSpy = vi.fn()
const activeSpy = vi.fn()
const deactiveSpy = vi.fn()

const Child: ComponentOptions = {
__hmrId: childId,
Expand Down

0 comments on commit 40a74cb

Please sign in to comment.