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/packages/svelte/tests/runtime-legacy/samples/component-binding-each-nested/_config.js

35 lines
679 B

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