export default {
props: {
x: 10
},
html: '5',
test({ assert, component, target }) {
component.x = 3;
assert.htmlEqual( target.innerHTML, '3' );
}
};