export default { data: { animals: [ 'alpaca', 'baboon', 'capybara' ] }, html: `

alpaca

baboon

capybara

`, test ( assert, component, target ) { component.set({ animals: [] }); assert.htmlEqual( target.innerHTML, `

no animals

` ); // trigger an 'update' of the else block, to ensure that // non-existent update method is not called component.set({ animals: [] }); component.set({ animals: ['wombat'] }); assert.htmlEqual( target.innerHTML, `

wombat

` ); component.set({ animals: ['dinosaur'] }); assert.htmlEqual( target.innerHTML, `

dinosaur

` ); } };