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/key-block-component-slot/_config.js

19 lines
361 B

const logs = [];
export default {
html: '<button>Reset!</button>',
props: {
logs
},
async test({ assert, target }) {
assert.deepEqual(logs, ['mount']);
const button = target.querySelector('button');
const click = new window.MouseEvent('click');
await button.dispatchEvent(click);
assert.deepEqual(logs, ['mount', 'unmount', 'mount']);
}
};