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/compiler/component-events/_config.js

22 lines
476 B

8 years ago
export default {
data: {
visible: true
},
html: '<div><!--#if visible--><p>i am a widget</p></div>', // TODO comment should follow component...
test ( assert, component ) {
8 years ago
let count = 0;
component.on( 'widgetTornDown', function () {
assert.equal( this, component );
count += 1;
});
component.set({ visible: false });
assert.equal( count, 1 );
component.set({ visible: true });
component.set({ visible: false });
assert.equal( count, 2 );
}
};