We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e120777 commit 7fdbaadCopy full SHA for 7fdbaad
test/test.js
@@ -127,7 +127,6 @@ describe('remote-input', function() {
127
const result = new Promise(resolve => {
128
remoteInput.addEventListener('remote-input-success', (event) => {
129
resolve(event)
130
- input.dispatchEvent(new Event('change'))
131
})
132
changeValue(input, 'test')
133
@@ -141,7 +140,7 @@ describe('remote-input', function() {
141
140
142
function changeValue(input, value) {
143
input.value = value
144
- input.dispatchEvent(new Event('focus'))
+ input.dispatchEvent(new Event('change'))
145
}
146
147
function nextTick() {
0 commit comments