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-document/_config.js

18 lines
322 B

export default {
html: '<div></div>',
async test({ assert, target, window }) {
const visibility = new window.Event('visibilitychange');
await window.document.dispatchEvent(visibility);
assert.htmlEqual(
target.innerHTML,
`
<div>
<div class="tooltip">Perform an Action</div>
</div>
`
);
}
};