export default { props: { x: 1 }, html: `
{"x":1}
`, async test({ assert, component, target }) { await component.$set({ x: 2 }); assert.htmlEqual(target.innerHTML, `
{"x":2}
`); } };