| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { assertCode, compileSFCScript as compile } from '../utils'
- describe('defineSlots()', () => {
- test('basic usage', () => {
- const { content } = compile(`
- <script setup lang="ts">
- const slots = defineSlots<{
- default: { msg: string }
- }>()
- </script>
- `)
- assertCode(content)
- expect(content).toMatch(`const slots = _useSlots()`)
- expect(content).not.toMatch('defineSlots')
- })
- test('w/o return value', () => {
- const { content } = compile(`
- <script setup lang="ts">
- defineSlots<{
- default: { msg: string }
- }>()
- </script>
- `)
- assertCode(content)
- expect(content).not.toMatch('defineSlots')
- expect(content).not.toMatch(`_useSlots`)
- })
- test('w/o generic params', () => {
- const { content } = compile(`
- <script setup>
- const slots = defineSlots()
- </script>
- `)
- assertCode(content)
- expect(content).toMatch(`const slots = _useSlots()`)
- expect(content).not.toMatch('defineSlots')
- })
- })
|