mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
import { renderNode } from '../../src/utils/vue/renderNode'
|
|
import createRefElement from '../utils/createRefElement'
|
|
|
|
describe('renderNode', () => {
|
|
it('should render string', () => {
|
|
const wrapper = createRefElement({
|
|
default: renderNode('hello world') as Function,
|
|
})
|
|
const text = wrapper.text()
|
|
|
|
expect(text).toBe('hello world')
|
|
})
|
|
})
|