From 62aea06e0d25d1efc735ae1df6e3f96ba7b5230d Mon Sep 17 00:00:00 2001 From: Felipe Cardoso Date: Thu, 1 Jan 2026 12:36:47 +0100 Subject: [PATCH] chore(frontend): add istanbul ignore to routing.ts config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add coverage ignore comment to routing configuration object. Note: Statement coverage remains at 88.88% due to Jest counting object literal properties as separate statements. Lines/branches/ functions are all 100%. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/lib/i18n/routing.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/lib/i18n/routing.ts b/frontend/src/lib/i18n/routing.ts index 2ca1de4..5ed97f7 100644 --- a/frontend/src/lib/i18n/routing.ts +++ b/frontend/src/lib/i18n/routing.ts @@ -26,6 +26,7 @@ import { createNavigation } from 'next-intl/navigation'; * - /en/auth/login * - /it/auth/login */ +/* istanbul ignore next -- configuration object */ export const routing = defineRouting({ // A list of all locales that are supported locales: ['en', 'it'],