From 289a95c918aeafd2c0ae91940b7d7e1c5f68c979 Mon Sep 17 00:00:00 2001 From: Julian Kobrynski Date: Fri, 20 Dec 2024 13:25:53 +0100 Subject: [PATCH] remove unused @ts-expect-error --- tests/actions/EnforceActionExportRestrictions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/actions/EnforceActionExportRestrictions.ts b/tests/actions/EnforceActionExportRestrictions.ts index bead431d030f..0f127eaa21ae 100644 --- a/tests/actions/EnforceActionExportRestrictions.ts +++ b/tests/actions/EnforceActionExportRestrictions.ts @@ -15,7 +15,6 @@ describe('ReportUtils', () => { }); it('does not export getReport', () => { - // @ts-expect-error the test is asserting that it's undefined, so the TS error is normal expect(ReportUtils.getReport).toBeUndefined(); });