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/custom-method/_config.js

20 lines
587 B

8 years ago
import * as assert from 'assert';
export default {
html: '<button>+1</button>\n\n<p>0</p>',
8 years ago
test ( component, target, window ) {
const button = target.querySelector( 'button' );
const event = new window.MouseEvent( 'click' );
button.dispatchEvent( event );
assert.equal( component.get( 'counter' ), 1 );
assert.equal( target.innerHTML, '<button>+1</button>\n\n<p>1</p>' );
8 years ago
button.dispatchEvent( event );
assert.equal( component.get( 'counter' ), 2 );
assert.equal( target.innerHTML, '<button>+1</button>\n\n<p>2</p>' );
8 years ago
assert.equal( component.foo(), 42 );
}
};