export default { get props() { return { animalPawsEntries: [ { animal: 'raccoon', pawType: 'hands' }, { animal: 'eagle', pawType: 'wings' } ] }; }, html: `
raccoon: hands
eagle: wings
`, test({ assert, component, target }) { component.animalPawsEntries = [{ animal: 'cow', pawType: 'hooves' }]; assert.htmlEqual( target.innerHTML, `cow: hooves
` ); } };