export default { get props() { return { animalPawsEntries: [ ['raccoon', 'hands'], ['eagle', 'wings'] ] }; }, html: `

hands

wings

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

bar

` ); } };