export default { data: { props: { foo: 'lol', baz: 40 + 2, qux: `this is a ${'piece of'} string`, quux: 'core' } }, html: `

foo: lol

\n

baz: 42 (number)

\n

qux: named

\n

quux: core

`, test ( assert, component, target ) { component.set({ props: { foo: 'wut', baz: 40 + 3, qux: `this is a ${'rather boring'} string`, quux: 'heart' } }); assert.equal( target.innerHTML, `

foo: wut

\n

baz: 43 (number)

\n

qux: named

\n

quux: heart

` ); } };