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

24 lines
332 B

export default {
data: {
x: 11
},
html: `
before-if-after
`,
test ( assert, component, target ) {
component.set({ x: 4 });
assert.htmlEqual( target.innerHTML, `
before-elseif-after
` );
component.set({ x: 6 });
assert.htmlEqual( target.innerHTML, `
before-else-after
` );
component.destroy();
}
};