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-no-outro-else-with.../_config.js

11 lines
293 B

export default {
nestedTransitions: true,
html: '<div>A wild component appears</div><p>x</p><input type="text">',
test(assert, component, target) {
component.set({ x: 'y' });
assert.htmlEqual(target.innerHTML, '<div>A wild component appears</div><p>y</p><input type="text">');
},
};