diff --git a/test/runtime/samples/this-in-function-expressions/_config.js b/test/runtime/samples/this-in-function-expressions/_config.js index 9aea4c3631..57f23a472b 100644 --- a/test/runtime/samples/this-in-function-expressions/_config.js +++ b/test/runtime/samples/this-in-function-expressions/_config.js @@ -1,6 +1,6 @@ export default { async test({ assert, target, window }) { - const [_, btn] = target.querySelectorAll('button'); + const [, btn] = target.querySelectorAll('button'); const clickEvent = new window.MouseEvent('click'); await btn.dispatchEvent(clickEvent);