Explorar el Código

test: fix renderSlot tests

Evan You hace 5 años
padre
commit
4e5897d2df
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  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(