export default { skip_if_ssr: true, get props() { return { count: 3 }; }, html: `
  1. id-0: value is zero
  2. id-1: value is one
  3. id-2: value is two
`, async test({ assert, target, window }) { const input = target.querySelector('input'); input.value = 4; await 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
` ); } };