export default { html: `

Hello Alice

Hello Bob

Hello Charles

`, test({ assert, component, target }) { component.people = ['Alice', 'Charles', 'Bob']; assert.htmlEqual( target.innerHTML, `

Hello Alice

Hello Charles

Hello Bob

` ); } };