export default { data: { bar: 'lol', x: 2, compound: 'piece of' }, html: `

foo: lol

\n

baz: 42 (number)

\n

qux: this is a piece of string

`, test ( assert, component, target ) { component.set({ bar: 'wut', x: 3, compound: 'rather boring' }); assert.equal( target.innerHTML, `

foo: wut

\n

baz: 43 (number)

\n

qux: this is a rather boring string

` ); } };