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

28 lines
570 B

8 years ago
export default {
html: `
<button>+1</button>
<p>0</p>
`,
8 years ago
async test({ assert, component, target, window }) {
const button = target.querySelector('button');
const event = new window.MouseEvent('click');
8 years ago
await button.dispatchEvent(event);
assert.equal(component.counter, 1);
assert.htmlEqual(target.innerHTML, `
<button>+1</button>
<p>1</p>
`);
8 years ago
await button.dispatchEvent(event);
assert.equal(component.counter, 2);
assert.htmlEqual(target.innerHTML, `
<button>+1</button>
<p>2</p>
`);
assert.equal(component.foo(), 42);
8 years ago
}
};