export default { store: true, // TODO remove this in v2 html: `

Hello world!

It's nice to see you, world.

`, test(assert, component, target) { component.store.set({ name: 'everybody' }); assert.htmlEqual(target.innerHTML, `

Hello everybody!

It's nice to see you, everybody.

`); } };