diff --git a/test/runtime/samples/spread-element-input-bind-group-with-value-in-spread/_config.js b/test/runtime/samples/spread-element-input-bind-group-with-value-in-spread/_config.js
deleted file mode 100644
index baaea373a0..0000000000
--- a/test/runtime/samples/spread-element-input-bind-group-with-value-in-spread/_config.js
+++ /dev/null
@@ -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: ``,
-
- async test({ assert, component, target, window }) {
- const input = target.querySelector('input');
- assert.equal(input.value, 'abc');
- assert.equal(input.__value, 'abc');
- }
-};
diff --git a/test/runtime/samples/spread-element-input-bind-group-with-value-in-spread/main.svelte b/test/runtime/samples/spread-element-input-bind-group-with-value-in-spread/main.svelte
deleted file mode 100644
index d4aa0d1897..0000000000
--- a/test/runtime/samples/spread-element-input-bind-group-with-value-in-spread/main.svelte
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-