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

raccoon: hands

eagle: wings

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

foo: bar

`); }, };