mirror of https://github.com/sveltejs/svelte
24 lines
388 B
24 lines
388 B
export default {
|
|
props: {
|
|
visible: true
|
|
},
|
|
|
|
html: '<div><p>i am a widget</p></div>',
|
|
|
|
test({ assert, component }) {
|
|
let count = 0;
|
|
|
|
component.$on('widgetTornDown', function() {
|
|
assert.equal(this, component);
|
|
count += 1;
|
|
});
|
|
|
|
component.visible = false;
|
|
assert.equal(count, 1);
|
|
|
|
component.visible = true;
|
|
component.visible = false;
|
|
assert.equal(count, 2);
|
|
}
|
|
};
|