export default { 'skip-ssr': true, data: { count: 3 }, html: `
  1. id-0: value is zero
  2. id-1: value is one
  3. id-2: value is two
`, test (assert, component, target, window) { const input = target.querySelector('input'); input.value = 4; input.dispatchEvent(new window.Event('input')); assert.htmlEqual(target.innerHTML, `
  1. id-0: value is zero
  2. id-1: value is one
  3. id-2: value is two
  4. id-3: value is three
`); } };