Browse Source

test: fix renderSlot tests

Evan You 4 years ago
parent
commit
4e5897d2df
1 changed files with 9 additions and 0 deletions
  1. 9 0
      packages/runtime-core/__tests__/helpers/renderSlot.spec.ts

+ 9 - 0
packages/runtime-core/__tests__/helpers/renderSlot.spec.ts

@@ -10,8 +10,17 @@ import {
   Slot
 } from '../../src'
 import { PatchFlags } from '@vue/shared'
+import { setCurrentRenderingInstance } from '../../src/componentRenderContext'
 
 describe('renderSlot', () => {
+  beforeEach(() => {
+    setCurrentRenderingInstance({ type: {} } as any)
+  })
+
+  afterEach(() => {
+    setCurrentRenderingInstance(null)
+  })
+
   it('should render slot', () => {
     let child
     const vnode = renderSlot(