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

foo: lol

baz: 42 (number)

qux: this is a piece of string

quux: core

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

foo: wut

baz: 43 (number)

qux: this is a rather boring string

quux: heart

`); } };