13 lines
172 B

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