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/reactive-values-self-depend.../_config.js

16 lines
239 B

export default {
html: `
<p>1 + 2 = 3</p>
<p>Times calculated: 1</p>
`,
test({ assert, component, target }) {
component.a = 3;
assert.htmlEqual(target.innerHTML, `
<p>3 + 2 = 5</p>
<p>Times calculated: 2</p>
`);
}
};