From 190a3c16af31a8ab08e5a6f39966bc171f6a85e4 Mon Sep 17 00:00:00 2001 From: Andreas Ehrencrona Date: Mon, 5 Oct 2020 11:32:32 +0200 Subject: [PATCH] Preparing for adding unused warning to eslint config --- 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);