export default { props: { animalPawsEntries: [ ['raccoon', 'hands'], ['eagle', 'wings'] ] }, html: `

hands

wings

`, test({ assert, component, target }) { component.animalPawsEntries = [['foo', 'bar']]; assert.htmlEqual( target.innerHTML, `

bar

`); } };