remove disabled test

pull/4809/head
Conduitry 5 years ago
parent 43ac9aef06
commit b83163310c

@ -1,22 +0,0 @@
export default {
// This fails because the test checks for __value being set on the node, which
// bind:group requires to work, but when a spread is used to set `value` on the
// element, the code that also sets `__value` on the node is not triggered.
// This is issue #4808.
skip: true,
props: {
props: {
'data-foo': 'bar',
value: 'abc'
}
},
html: `<input data-foo="bar" type="radio" value="abc">`,
async test({ assert, component, target, window }) {
const input = target.querySelector('input');
assert.equal(input.value, 'abc');
assert.equal(input.__value, 'abc');
}
};

@ -1,6 +0,0 @@
<script>
export let props;
let radioValue;
</script>
<input type="radio" {...props} bind:group={radioValue} />
Loading…
Cancel
Save