mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 03:57:36 +08:00
test: test case for prefixIdentifiers w/ bindings
This commit is contained in:
parent
452aa9d29c
commit
d4787e53ef
@ -1,6 +1,7 @@
|
|||||||
import { prefixIdentifiers } from '../src/prefixIdentifiers'
|
import { prefixIdentifiers } from '../src/prefixIdentifiers'
|
||||||
import { compile } from 'web/entry-compiler'
|
import { compile } from 'web/entry-compiler'
|
||||||
import { format } from 'prettier'
|
import { format } from 'prettier'
|
||||||
|
import { BindingTypes } from '../src/types'
|
||||||
|
|
||||||
it('should work', () => {
|
it('should work', () => {
|
||||||
const { render } = compile(`<div id="app">
|
const { render } = compile(`<div id="app">
|
||||||
@ -53,3 +54,41 @@ it('should work', () => {
|
|||||||
"
|
"
|
||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('setup bindings', () => {
|
||||||
|
const { render } = compile(`<div @click="count++">{{ count }}</div>`)
|
||||||
|
|
||||||
|
const result = format(
|
||||||
|
prefixIdentifiers(render, `render`, false, false, undefined, {
|
||||||
|
count: BindingTypes.SETUP_REF
|
||||||
|
}),
|
||||||
|
{
|
||||||
|
semi: false,
|
||||||
|
parser: 'babel'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(result).toMatch(`_setup = _vm._setupProxy`)
|
||||||
|
expect(result).toMatch(`_setup.count++`)
|
||||||
|
expect(result).toMatch(`_vm._s(_setup.count)`)
|
||||||
|
|
||||||
|
expect(result).toMatchInlineSnapshot(`
|
||||||
|
"function render() {
|
||||||
|
var _vm = this,
|
||||||
|
_c = _vm._self._c,
|
||||||
|
_setup = _vm._setupProxy
|
||||||
|
return _c(
|
||||||
|
\\"div\\",
|
||||||
|
{
|
||||||
|
on: {
|
||||||
|
click: function (\$event) {
|
||||||
|
_setup.count++
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[_vm._v(_vm._s(_setup.count))]
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user