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
372 B

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