chore: split ssr transition group tests
This commit is contained in:
parent
ee4186ef9e
commit
1035c6b51b
@ -367,94 +367,6 @@ describe('ssr: components', () => {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// transition-group should flatten and concat its children fragments into
|
|
||||||
// a single one
|
|
||||||
describe('transition-group', () => {
|
|
||||||
test('basic', () => {
|
|
||||||
expect(
|
|
||||||
compile(
|
|
||||||
`<transition-group><div v-for="i in list"/></transition-group>`
|
|
||||||
).code
|
|
||||||
).toMatchInlineSnapshot(`
|
|
||||||
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
|
||||||
|
|
||||||
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
|
||||||
_push(\`<!--[-->\`)
|
|
||||||
_ssrRenderList(_ctx.list, (i) => {
|
|
||||||
_push(\`<div></div>\`)
|
|
||||||
})
|
|
||||||
_push(\`<!--]-->\`)
|
|
||||||
}"
|
|
||||||
`)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('with static tag', () => {
|
|
||||||
expect(
|
|
||||||
compile(
|
|
||||||
`<transition-group tag="ul"><div v-for="i in list"/></transition-group>`
|
|
||||||
).code
|
|
||||||
).toMatchInlineSnapshot(`
|
|
||||||
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
|
||||||
|
|
||||||
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
|
||||||
_push(\`<ul>\`)
|
|
||||||
_ssrRenderList(_ctx.list, (i) => {
|
|
||||||
_push(\`<div></div>\`)
|
|
||||||
})
|
|
||||||
_push(\`</ul>\`)
|
|
||||||
}"
|
|
||||||
`)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('with dynamic tag', () => {
|
|
||||||
expect(
|
|
||||||
compile(
|
|
||||||
`<transition-group :tag="someTag"><div v-for="i in list"/></transition-group>`
|
|
||||||
).code
|
|
||||||
).toMatchInlineSnapshot(`
|
|
||||||
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
|
||||||
|
|
||||||
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
|
||||||
_push(\`<\${_ctx.someTag}>\`)
|
|
||||||
_ssrRenderList(_ctx.list, (i) => {
|
|
||||||
_push(\`<div></div>\`)
|
|
||||||
})
|
|
||||||
_push(\`</\${_ctx.someTag}>\`)
|
|
||||||
}"
|
|
||||||
`)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('with multi fragments children', () => {
|
|
||||||
expect(
|
|
||||||
compile(
|
|
||||||
`<transition-group>
|
|
||||||
<div v-for="i in 10"/>
|
|
||||||
<div v-for="i in 10"/>
|
|
||||||
<template v-if="ok"><div>ok</div></template>
|
|
||||||
</transition-group>`
|
|
||||||
).code
|
|
||||||
).toMatchInlineSnapshot(`
|
|
||||||
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
|
||||||
|
|
||||||
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
|
||||||
_push(\`<!--[-->\`)
|
|
||||||
_ssrRenderList(10, (i) => {
|
|
||||||
_push(\`<div></div>\`)
|
|
||||||
})
|
|
||||||
_ssrRenderList(10, (i) => {
|
|
||||||
_push(\`<div></div>\`)
|
|
||||||
})
|
|
||||||
if (_ctx.ok) {
|
|
||||||
_push(\`<div>ok</div>\`)
|
|
||||||
} else {
|
|
||||||
_push(\`<!---->\`)
|
|
||||||
}
|
|
||||||
_push(\`<!--]-->\`)
|
|
||||||
}"
|
|
||||||
`)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('custom directive', () => {
|
describe('custom directive', () => {
|
||||||
|
88
packages/compiler-ssr/__tests__/ssrTransitionGroup.spec.ts
Normal file
88
packages/compiler-ssr/__tests__/ssrTransitionGroup.spec.ts
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
import { compile } from '../src'
|
||||||
|
|
||||||
|
// transition-group should flatten and concat its children fragments into
|
||||||
|
// a single one
|
||||||
|
describe('transition-group', () => {
|
||||||
|
test('basic', () => {
|
||||||
|
expect(
|
||||||
|
compile(`<transition-group><div v-for="i in list"/></transition-group>`)
|
||||||
|
.code
|
||||||
|
).toMatchInlineSnapshot(`
|
||||||
|
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
||||||
|
|
||||||
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
||||||
|
_push(\`<!--[-->\`)
|
||||||
|
_ssrRenderList(_ctx.list, (i) => {
|
||||||
|
_push(\`<div></div>\`)
|
||||||
|
})
|
||||||
|
_push(\`<!--]-->\`)
|
||||||
|
}"
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('with static tag', () => {
|
||||||
|
expect(
|
||||||
|
compile(
|
||||||
|
`<transition-group tag="ul"><div v-for="i in list"/></transition-group>`
|
||||||
|
).code
|
||||||
|
).toMatchInlineSnapshot(`
|
||||||
|
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
||||||
|
|
||||||
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
||||||
|
_push(\`<ul>\`)
|
||||||
|
_ssrRenderList(_ctx.list, (i) => {
|
||||||
|
_push(\`<div></div>\`)
|
||||||
|
})
|
||||||
|
_push(\`</ul>\`)
|
||||||
|
}"
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('with dynamic tag', () => {
|
||||||
|
expect(
|
||||||
|
compile(
|
||||||
|
`<transition-group :tag="someTag"><div v-for="i in list"/></transition-group>`
|
||||||
|
).code
|
||||||
|
).toMatchInlineSnapshot(`
|
||||||
|
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
||||||
|
|
||||||
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
||||||
|
_push(\`<\${_ctx.someTag}>\`)
|
||||||
|
_ssrRenderList(_ctx.list, (i) => {
|
||||||
|
_push(\`<div></div>\`)
|
||||||
|
})
|
||||||
|
_push(\`</\${_ctx.someTag}>\`)
|
||||||
|
}"
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('with multi fragments children', () => {
|
||||||
|
expect(
|
||||||
|
compile(
|
||||||
|
`<transition-group>
|
||||||
|
<div v-for="i in 10"/>
|
||||||
|
<div v-for="i in 10"/>
|
||||||
|
<template v-if="ok"><div>ok</div></template>
|
||||||
|
</transition-group>`
|
||||||
|
).code
|
||||||
|
).toMatchInlineSnapshot(`
|
||||||
|
"const { ssrRenderList: _ssrRenderList } = require(\\"vue/server-renderer\\")
|
||||||
|
|
||||||
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
||||||
|
_push(\`<!--[-->\`)
|
||||||
|
_ssrRenderList(10, (i) => {
|
||||||
|
_push(\`<div></div>\`)
|
||||||
|
})
|
||||||
|
_ssrRenderList(10, (i) => {
|
||||||
|
_push(\`<div></div>\`)
|
||||||
|
})
|
||||||
|
if (_ctx.ok) {
|
||||||
|
_push(\`<div>ok</div>\`)
|
||||||
|
} else {
|
||||||
|
_push(\`<!---->\`)
|
||||||
|
}
|
||||||
|
_push(\`<!--]-->\`)
|
||||||
|
}"
|
||||||
|
`)
|
||||||
|
})
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user