fix: fragment replaceVNode

This commit is contained in:
Evan You
2018-10-28 14:22:52 -04:00
parent 45e9a42a1a
commit e8dd725e41
2 changed files with 4 additions and 4 deletions

View File

@@ -80,7 +80,7 @@ describe('Fragments', () => {
render() {
return state.ok
? [h('div', 'one'), 'two']
: [h('div', 'foo'), 'bar', 'baz']
: [h('pre', 'foo'), 'bar', 'baz']
}
}
const root = nodeOps.createElement('div')
@@ -90,7 +90,7 @@ describe('Fragments', () => {
state.ok = false
await nextTick()
expect(serialize(root)).toBe(`<div><div>foo</div>barbaz</div>`)
expect(serialize(root)).toBe(`<div><pre>foo</pre>barbaz</div>`)
})
it('should be able to patch fragment children (explcitly keyed)', async () => {