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

20 lines
429 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,
get props() {
return { 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);
}
};