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

foo: lol

\n

baz: 42 (number)

\n

qux: this is a piece of string

\n

quux: core

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

foo: wut

\n

baz: 43 (number)

\n

qux: this is a rather boring string

\n

quux: heart

` ); } };