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/binding-input-text-deconfli.../_config.js

36 lines
677 B

export default {
data: {
component: {
name: 'world'
}
},
html: `
<h1>Hello world!</h1>
<input>
`,
test ( assert, component, target, window ) {
const input = target.querySelector( 'input' );
assert.equal( input.value, 'world' );
const event = new window.Event( 'input' );
input.value = 'everybody';
input.dispatchEvent( event );
assert.equal( input.value, 'everybody' );
assert.htmlEqual( target.innerHTML, `
<h1>Hello everybody!</h1>
<input>
` );
component.set({ component: { name: 'goodbye' } });
assert.equal( input.value, 'goodbye' );
assert.htmlEqual( target.innerHTML, `
<h1>Hello goodbye!</h1>
<input>
` );
}
};