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/select-one-way-bind/_config.js

20 lines
379 B

8 years ago
export default {
skip_if_ssr: true,
8 years ago
get props() {
return { foo: 'a' };
8 years ago
},
test({ assert, component, target }) {
const options = target.querySelectorAll('option');
8 years ago
assert.equal(options[0].selected, true);
assert.equal(options[1].selected, false);
8 years ago
component.foo = 'b';
8 years ago
assert.equal(options[0].selected, false);
assert.equal(options[1].selected, true);
8 years ago
}
};