mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
export default {
|
|
props: {
|
|
a: 3,
|
|
b: 4,
|
|
c: 5,
|
|
d: 6
|
|
},
|
|
html: `
|
|
<div>Length: 3</div>
|
|
<div>Values: 4,5,1</div>
|
|
<div d="4" e="5" foo="1"></div>
|
|
<div a="1" b="2" c="3" d="4" e="5" foo="1"></div>
|
|
<button></button><button></button><button></button><button></button>
|
|
`,
|
|
|
|
async test({ assert, target, window }) {
|
|
const [btn1, btn2, btn3, btn4] = target.querySelectorAll('button');
|
|
const clickEvent = new window.MouseEvent('click');
|
|
|
|
await btn1.dispatchEvent(clickEvent);
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<div>Length: 3</div>
|
|
<div>Values: 4,5,1</div>
|
|
<div d="4" e="5" foo="1"></div>
|
|
<div a="31" b="32" c="3" d="4" e="5" foo="1"></div>
|
|
<button></button><button></button><button></button><button></button>
|
|
`);
|
|
|
|
await btn2.dispatchEvent(clickEvent);
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<div>Length: 3</div>
|
|
<div>Values: 34,5,1</div>
|
|
<div d="34" e="5" foo="1"></div>
|
|
<div a="31" b="32" c="3" d="34" e="5" foo="1"></div>
|
|
<button></button><button></button><button></button><button></button>
|
|
`);
|
|
|
|
await btn3.dispatchEvent(clickEvent);
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<div>Length: 3</div>
|
|
<div>Values: 34,5,31</div>
|
|
<div d="34" e="5" foo="31"></div>
|
|
<div a="31" b="32" c="3" d="34" e="5" foo="31"></div>
|
|
<button></button><button></button><button></button><button></button>
|
|
`);
|
|
|
|
await btn4.dispatchEvent(clickEvent);
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
<div>Length: 4</div>
|
|
<div>Values: 34,5,31,2</div>
|
|
<div d="34" e="5" foo="31" bar="2"></div>
|
|
<div a="31" b="32" c="3" d="34" e="5" foo="31" bar="2"></div>
|
|
<button></button><button></button><button></button><button></button>
|
|
`);
|
|
}
|
|
};
|