diff --git a/test/hydration/samples/binding-input/_config.js b/test/hydration/samples/binding-input/_config.js index 9004d06490..388d21302b 100644 --- a/test/hydration/samples/binding-input/_config.js +++ b/test/hydration/samples/binding-input/_config.js @@ -20,10 +20,9 @@ export default { input.value = 'everybody'; await input.dispatchEvent(new window.Event('input')); - assert.equal(component.name, 'everybody'); assert.htmlEqual(target.innerHTML, `
Hello everybody!
`); } -}; \ No newline at end of file +}; diff --git a/test/hydration/samples/event-handler/_config.js b/test/hydration/samples/event-handler/_config.js index cdf7431836..5b6deea262 100644 --- a/test/hydration/samples/event-handler/_config.js +++ b/test/hydration/samples/event-handler/_config.js @@ -17,10 +17,9 @@ export default { await button.dispatchEvent(new window.MouseEvent('click')); - assert.ok(component.clicked); assert.htmlEqual(target.innerHTML, `clicked!
`); } -}; \ No newline at end of file +};