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/attribute-boolean-indetermi.../_config.js

21 lines
418 B

export default {
// This is a bit of a funny one — there's no equivalent attribute,
// so it can't be server-rendered
'skip-ssr': true,
data: {
indeterminate: true
},
html: `
<input type='checkbox'>
`,
test(assert, component, target) {
const input = target.querySelector('input');
assert.ok(input.indeterminate);
component.set({ indeterminate: false });
assert.ok(!input.indeterminate);
}
};