mirror of https://github.com/sveltejs/svelte
29 lines
538 B
29 lines
538 B
import { test } from '../../test';
|
|
|
|
/** @type {string[]} */
|
|
let calls = [];
|
|
|
|
export default test({
|
|
get props() {
|
|
return { calls };
|
|
},
|
|
|
|
before_test() {
|
|
calls = [];
|
|
},
|
|
|
|
async test({ assert, component, target, window }) {
|
|
const button = target.querySelector('button');
|
|
|
|
assert.deepEqual(calls.length, 1);
|
|
|
|
const event = new window.MouseEvent('click', { bubbles: true });
|
|
await button?.dispatchEvent(event);
|
|
|
|
assert.deepEqual(calls.length, 1);
|
|
|
|
component.current_path = 'bar';
|
|
assert.deepEqual(calls.length, 2);
|
|
}
|
|
});
|