vue3-yuanma/packages/runtime-core/__tests__/apiSetupHelpers.spec.ts

62 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-11-26 23:01:36 +08:00
import {
defineComponent,
h,
nodeOps,
render,
SetupContext
} from '@vue/runtime-test'
2021-06-23 22:31:32 +08:00
import {
defineEmits,
defineProps,
useAttrs,
useSlots
} from '../src/apiSetupHelpers'
2020-11-26 23:01:36 +08:00
describe('SFC <script setup> helpers', () => {
test('should warn runtime usage', () => {
defineProps()
expect(`defineProps() is a compiler-hint`).toHaveBeenWarned()
defineEmits()
expect(`defineEmits() is a compiler-hint`).toHaveBeenWarned()
2020-11-26 23:01:36 +08:00
})
2021-06-23 22:31:32 +08:00
test('useSlots / useAttrs (no args)', () => {
let slots: SetupContext['slots'] | undefined
let attrs: SetupContext['attrs'] | undefined
2020-11-26 23:01:36 +08:00
const Comp = {
setup() {
2021-06-23 22:31:32 +08:00
slots = useSlots()
attrs = useAttrs()
2020-11-26 23:01:36 +08:00
return () => {}
}
}
2021-06-23 22:31:32 +08:00
const passedAttrs = { id: 'foo' }
const passedSlots = {
default: () => {},
x: () => {}
}
render(h(Comp, passedAttrs, passedSlots), nodeOps.createElement('div'))
expect(typeof slots!.default).toBe('function')
expect(typeof slots!.x).toBe('function')
expect(attrs).toMatchObject(passedAttrs)
2020-11-26 23:01:36 +08:00
})
2021-06-23 22:31:32 +08:00
test('useSlots / useAttrs (with args)', () => {
let slots: SetupContext['slots'] | undefined
let attrs: SetupContext['attrs'] | undefined
2020-11-26 23:01:36 +08:00
let ctx: SetupContext | undefined
const Comp = defineComponent({
2021-06-23 22:31:32 +08:00
setup(_, _ctx) {
slots = useSlots()
attrs = useAttrs()
ctx = _ctx
2020-11-26 23:01:36 +08:00
return () => {}
}
})
render(h(Comp), nodeOps.createElement('div'))
2021-06-23 22:31:32 +08:00
expect(slots).toBe(ctx!.slots)
expect(attrs).toBe(ctx!.attrs)
2020-11-26 23:01:36 +08:00
})
})