From 4935276aa468f8018b4a3dcbc2e74ab1456d4771 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Thu, 28 Mar 2024 15:58:51 -0700 Subject: [PATCH] eslint: Fix @typescript-eslint/use-unknown-in-catch-callback-variable. Signed-off-by: Anders Kaseorg --- web/e2e-tests/lib/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/e2e-tests/lib/common.ts b/web/e2e-tests/lib/common.ts index c7c06a5bea..42a9c93ffa 100644 --- a/web/e2e-tests/lib/common.ts +++ b/web/e2e-tests/lib/common.ts @@ -715,7 +715,7 @@ export async function run_test_async(test_function: (page: Page) => Promise Promise): void { - run_test_async(test_function).catch((error) => { + run_test_async(test_function).catch((error: unknown) => { console.error(error); process.exit(1); });