export default { props: { x: 11 }, html: `
x is greater than 10
`, test({ assert, component, target }) { component.x = 4; assert.htmlEqual( target.innerHTML, `x is less than 5
` ); component.x = 6; assert.htmlEqual( target.innerHTML, `x is between 5 and 10
` ); } };