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

22 lines
417 B

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