12 lines
188 B

export default {
props: {
x: true,
things: ['a', 'b']
},
test({ assert, component, target, window, raf }) {
component.x = false;
assert.htmlEqual(target.innerHTML, '');
},
};