aboutsummaryrefslogtreecommitdiff
path: root/test/content/InputDriver.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/content/InputDriver.test.ts')
-rw-r--r--test/content/InputDriver.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/content/InputDriver.test.ts b/test/content/InputDriver.test.ts
index 367ec1d..d3a55dd 100644
--- a/test/content/InputDriver.test.ts
+++ b/test/content/InputDriver.test.ts
@@ -104,7 +104,7 @@ describe('InputDriver', () => {
['input', 'textarea', 'select'].forEach((name) => {
const input = window.document.createElement(name);
const driver = new InputDriver(input);
- driver.onKey((key: Key): boolean => {
+ driver.onKey((_key: Key): boolean => {
expect.fail();
return false;
});