From 664612d9262f561b78b721ec45ff97617b517557 Mon Sep 17 00:00:00 2001 From: Hong Xu Date: Fri, 31 Jan 2025 11:59:26 -0800 Subject: [PATCH] Remove 2 unnecessary eslint-disable directives (#385) --- src/test/runTest.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/test/runTest.ts b/src/test/runTest.ts index 5cdfc51..561b6b6 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -29,9 +29,7 @@ async function main() { extensionTestsPath: untitledExtensionTestsPath, launchArgs: [untitledWorkspace], }) - // eslint-disable-next-line @typescript-eslint/no-unused-vars - } catch (err) { - // tslint:disable-next-line:no-console + } catch { console.error('Failed to run tests') process.exit(1) }