From 033f1c7a64f9f59aede5c91c07bb92a42c6462d0 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 23 May 2024 12:07:28 +0200 Subject: [PATCH] Remove obsolete ts-ignore --- test/CodeQuality.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/CodeQuality.spec.ts b/test/CodeQuality.spec.ts index f1371a45d..c2939ef0f 100644 --- a/test/CodeQuality.spec.ts +++ b/test/CodeQuality.spec.ts @@ -81,7 +81,6 @@ const cachedHashes: Record = {} async function validateScriptIntegrityOf(path: string): Promise { const htmlContents = readFileSync(path, "utf8") const doc = parse_html(htmlContents) - // @ts-ignore const scripts = Array.from(doc.getElementsByTagName("script")) // Maps source URL onto hash const failed = new Set()