forked from opentiny/tiny-engine
13 lines
493 B
JavaScript
13 lines
493 B
JavaScript
import { expect, test } from 'vitest'
|
|
import { genSFCWithDefaultPlugin } from '@/generator/vue/sfc'
|
|
import schema from './page.schema.json'
|
|
import componentsMap from './components-map.json'
|
|
import { formatCode } from '@/utils/formatCode'
|
|
|
|
test('should generate slot declaration correctly', async () => {
|
|
const res = genSFCWithDefaultPlugin(schema, componentsMap)
|
|
const formattedCode = formatCode(res, 'vue')
|
|
|
|
await expect(formattedCode).toMatchFileSnapshot('./expected/slotTest.vue')
|
|
})
|