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

30 lines
882 B

export default {
data: {
items: [
'one',
'two',
'three'
]
},
8 years ago
html: `<div><input><p>one</p></div><div><input><p>two</p></div><div><input><p>three</p></div><!---->`,
test ( assert, component, target, window ) {
const inputs = [ ...target.querySelectorAll( 'input' ) ];
const items = component.get().items;
const event = new window.Event( 'input' );
assert.equal( inputs[0].value, 'one' );
inputs[1].value = 'four';
inputs[1].dispatchEvent( event );
assert.equal( items[1], 'four' );
8 years ago
assert.equal( target.innerHTML, `<div><input><p>one</p></div><div><input><p>four</p></div><div><input><p>three</p></div><!---->` );
items[2] = 'five';
component.set({ items });
assert.equal( inputs[2].value, 'five' );
8 years ago
assert.equal( target.innerHTML, `<div><input><p>one</p></div><div><input><p>four</p></div><div><input><p>five</p></div><!---->` );
}
};