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/onstate-no-template/_config.js

12 lines
149 B

export default {
'skip-ssr': true,
data: {
foo: 'woo!'
},
test(assert, component) {
assert.deepEqual(component.changed, { foo: 1 });
}
};