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/generator/component-binding-each/_config.js

29 lines
517 B

export default {
html: `
<input>
<input>
<input>
<p>foo, bar, baz</p>
`,
test ( assert, component, target, window ) {
const change = new window.MouseEvent( 'change' );
const inputs = target.querySelectorAll( 'input' );
inputs[0].value = 'blah';
inputs[0].dispatchEvent( change );
assert.deepEqual( component.get( 'a' ), [ 'blah', 'bar', 'baz' ] );
assert.htmlEqual( target.innerHTML, `
<input>
<input>
<input>
<p>blah, bar, baz</p>
` );
component.teardown();
}
};