diff --git a/test/runtime/samples/each-block-scope-shadow-self/_config.js b/test/runtime/samples/each-block-scope-shadow-self/_config.js
index 2b1a525aba..1669dc5b6e 100644
--- a/test/runtime/samples/each-block-scope-shadow-self/_config.js
+++ b/test/runtime/samples/each-block-scope-shadow-self/_config.js
@@ -1,16 +1,12 @@
export default {
- html: '',
async test({ assert, component, target }) {
+ assert.equal(target.querySelectorAll('input').length, 3);
+
const input = target.querySelector('input');
input.value = 'svelte';
await input.dispatchEvent(new window.Event('input'));
- assert.htmlEqual(
- target.innerHTML,
- `
-
- `
- );
+ assert.equal(target.querySelectorAll('input').length, 3);
assert.deepEqual(component.data, { a: 'svelte', b: 'B', c: 'C' });
assert.deepEqual(component.x, ['a', 'b', 'c']);
},