export default { get props() { return { animals: [], foo: 'something else' }; }, html: ` before
no animals, but rather something else
after `, test({ assert, component, target }) { component.animals = ['wombat']; assert.htmlEqual( target.innerHTML, ` beforewombat
after ` ); } };