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

19 lines
261 B

export default {
props: {
x: 1
},
html: `
<p>1 1 1</p>
`,
test({ assert, component, target }) {
assert.equal(component.y, 1);
assert.equal(component.z, 1);
component.x = 2;
assert.equal(component.y, 2);
assert.equal(component.z, 2);
}
};