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/if-block-else/_config.js

32 lines
459 B

export default {
props: {
foo: true,
bar: false
},
html: `
<p>foo</p>
<p>not bar</p>
`,
test({ assert, component, target }) {
component.foo = false;
assert.htmlEqual( target.innerHTML, `
<p>not foo</p>
<p>not bar</p>
` );
component.bar = true;
assert.htmlEqual( target.innerHTML, `
<p>not foo</p>
<p>bar</p>
` );
component.foo = true;
assert.htmlEqual( target.innerHTML, `
<p>foo</p>
<p>bar</p>
` );
}
};