From b865494def6bb5bc937fcafeb843583ce4e111e4 Mon Sep 17 00:00:00 2001 From: Andreas Ehrencrona Date: Mon, 19 Oct 2020 17:12:43 +0200 Subject: [PATCH] Preparing for adding unused warning to eslint config (#5498) --- test/runtime/samples/this-in-function-expressions/_config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);