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.
svelte/test/runtime/samples/action-function/_config.js

29 lines
568 B

export default {
html: `
<button>action</button>
`,
async test({ assert, target, window }) {
const button = target.querySelector('button');
const eventEnter = new window.MouseEvent('mouseenter');
const eventLeave = new window.MouseEvent('mouseleave');
await button.dispatchEvent(eventEnter);
assert.htmlEqual(
target.innerHTML,
`
<button>action</button>
<div class="tooltip">Perform an Action</div>
`
);
await button.dispatchEvent(eventLeave);
assert.htmlEqual(
target.innerHTML,
`
<button>action</button>
`
);
}
};