| 551 | const input = document.createElement('input'); |
| 552 | |
| 553 | const mutate = value => { |
| 554 | input.value = value; |
| 555 | input.dispatchEvent(new Event('change')); |
| 556 | }; |
| 557 | |
| 558 | const subscription = { |
| 559 | getCurrentValue: () => input.value, |
no outgoing calls
no test coverage detected