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

foo: lol

baz: 42 (number)

qux: named

quux: core

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

foo: wut

baz: 43 (number)

qux: named

quux: heart

`); } };