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/immutable-svelte-meta-false/_config.js

12 lines
283 B

export default {
immutable: true,
html: `<div><h3>Called 1 times.</h3></div>`,
test({ assert, component, target }) {
// eslint-disable-next-line no-self-assign
component.foo = component.foo;
assert.htmlEqual(target.innerHTML, `<div><h3>Called 2 times.</h3></div>`);
}
};