You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/component-events/_config.js

24 lines
388 B

8 years ago
export default {
props: {
8 years ago
visible: true
},
html: '<div><p>i am a widget</p></div>',
test({ assert, component }) {
8 years ago
let count = 0;
component.$on('widgetTornDown', function() {
assert.equal(this, component);
8 years ago
count += 1;
});
component.visible = false;
assert.equal(count, 1);
8 years ago
component.visible = true;
component.visible = false;
assert.equal(count, 2);
8 years ago
}
};