mirror of https://github.com/sveltejs/svelte
parent
e63529683d
commit
9218f20330
@ -0,0 +1,5 @@
|
|||||||
|
<ul>
|
||||||
|
<li>animal</li>
|
||||||
|
<li>vegetable</li>
|
||||||
|
<li>mineral</li>
|
||||||
|
</ul>
|
@ -0,0 +1,5 @@
|
|||||||
|
<ul>
|
||||||
|
<li>animal</li>
|
||||||
|
<li>vegetable</li>
|
||||||
|
<li>mineral</li>
|
||||||
|
</ul>
|
@ -0,0 +1,31 @@
|
|||||||
|
export default {
|
||||||
|
data: {
|
||||||
|
things: {
|
||||||
|
foo: [
|
||||||
|
'animal',
|
||||||
|
'vegetable',
|
||||||
|
'mineral'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
snapshot(target) {
|
||||||
|
const ul = target.querySelector('ul');
|
||||||
|
const lis = ul.querySelectorAll('li');
|
||||||
|
|
||||||
|
return {
|
||||||
|
ul,
|
||||||
|
lis
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
test(assert, target, snapshot) {
|
||||||
|
const ul = target.querySelector('ul');
|
||||||
|
const lis = ul.querySelectorAll('li');
|
||||||
|
|
||||||
|
assert.equal(ul, snapshot.ul);
|
||||||
|
assert.equal(lis[0], snapshot.lis[0]);
|
||||||
|
assert.equal(lis[1], snapshot.lis[1]);
|
||||||
|
assert.equal(lis[2], snapshot.lis[2]);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,5 @@
|
|||||||
|
<ul>
|
||||||
|
{{#each things.foo as foo}}
|
||||||
|
<li>{{foo}}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
Loading…
Reference in new issue