-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: split ssr transition group tests
- Loading branch information
Showing
2 changed files
with
88 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
packages/compiler-ssr/__tests__/ssrTransitionGroup.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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(\`<!--]-->\`) | ||
}" | ||
`) | ||
}) | ||
}) |