From ca92585236535945e775abd84353a46449754297 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 17:43:49 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20[code=20health]=20Remove=20@ts-i?= =?UTF-8?q?gnore=20in=20mapRowsByName=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced `// @ts-ignore` statements with `as any` type assertions in `tests/unit/mapRowsByName.test.ts` to improve code health. --- tests/unit/mapRowsByName.test.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/unit/mapRowsByName.test.ts b/tests/unit/mapRowsByName.test.ts index 07da8b5..0e4b0b1 100644 --- a/tests/unit/mapRowsByName.test.ts +++ b/tests/unit/mapRowsByName.test.ts @@ -10,10 +10,8 @@ test('mapRowsByName - returns empty array for null/undefined input', () => { }); test('mapRowsByName - returns empty array for missing columns or values', () => { - // @ts-ignore - assert.deepStrictEqual(mapRowsByName({ columns: [] }, {}), []); - // @ts-ignore - assert.deepStrictEqual(mapRowsByName({ values: [] }, {}), []); + assert.deepStrictEqual(mapRowsByName({ columns: [] } as any, {}), []); + assert.deepStrictEqual(mapRowsByName({ values: [] } as any, {}), []); }); test('mapRowsByName - maps rows correctly', () => {