pull/3698/head
Tan Li Hau 6 years ago
parent be20e912d9
commit 9d82aaafc0

@ -1,16 +1,12 @@
export default {
html: '<input type="text"><input type="text"><input type="text">',
async test({ assert, component, target }) {
assert.equal(target.querySelectorAll('input').length, 3);
const input = target.querySelector('input');
input.value = 'svelte';
await input.dispatchEvent(new window.Event('input'));
assert.htmlEqual(
target.innerHTML,
`
<input type="text"><input type="text"><input type="text">
`
);
assert.equal(target.querySelectorAll('input').length, 3);
assert.deepEqual(component.data, { a: 'svelte', b: 'B', c: 'C' });
assert.deepEqual(component.x, ['a', 'b', 'c']);
},

Loading…
Cancel
Save