mirror of https://github.com/sveltejs/svelte
29 lines
598 B
29 lines
598 B
export default {
|
|
props: {
|
|
name: 'world'
|
|
},
|
|
|
|
snapshot(target) {
|
|
return {
|
|
input: target.querySelector('input'),
|
|
p: target.querySelector('p')
|
|
};
|
|
},
|
|
|
|
async test(assert, target, snapshot, component, window) {
|
|
const input = target.querySelector('input');
|
|
const p = target.querySelector('p');
|
|
|
|
assert.equal(input, snapshot.input);
|
|
assert.equal(p, snapshot.p);
|
|
|
|
input.value = 'everybody';
|
|
await input.dispatchEvent(new window.Event('input'));
|
|
|
|
assert.equal(component.name, 'everybody');
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<input>
|
|
<p>Hello everybody!</p>
|
|
`);
|
|
}
|
|
}; |