Remove Object.entries from test

pull/889/head
Jacob Mischka 8 years ago
parent ffbc991027
commit a60a7e6773
No known key found for this signature in database
GPG Key ID: 50A869F8CD9CBB9C

@ -1,9 +1,9 @@
export default { export default {
data: { data: {
animalPaws: { animalPawsEntries: [
raccoon: 'hands', ['raccoon', 'hands'],
eagle: 'wings' ['eagle', 'wings']
} ]
}, },
html: ` html: `

@ -1,3 +1,3 @@
{{#each Object.entries(animalPaws) as [animal, pawType]}} {{#each animalPawsEntries as [animal, pawType]}}
<p>{{animal}}: {{pawType}}</p> <p>{{animal}}: {{pawType}}</p>
{{/each}} {{/each}}

Loading…
Cancel
Save