From 63a2428cd9bb7bf292b5de3893d030f7fbd54ba0 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Wed, 29 Oct 2025 09:00:06 +0000 Subject: [PATCH] chore(test-app): remove unnecessary eslint-disable comments - Remove eslint-disable-next-line no-console comments from test app - Cleanup whitespace in router navigation logs --- .../daily-notification-test/src/config/test-user-zero.ts | 8 ++++---- test-apps/daily-notification-test/src/router/index.ts | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test-apps/daily-notification-test/src/config/test-user-zero.ts b/test-apps/daily-notification-test/src/config/test-user-zero.ts index 4cfee32..74dd2bf 100644 --- a/test-apps/daily-notification-test/src/config/test-user-zero.ts +++ b/test-apps/daily-notification-test/src/config/test-user-zero.ts @@ -175,7 +175,7 @@ export class TestUserZeroAPI { ): Promise { if (TEST_USER_ZERO_CONFIG.testing.enableMockResponses) { // Return mock data for offline testing - // eslint-disable-next-line no-console + console.log("๐Ÿงช Using mock starred projects response"); return MOCK_STARRED_PROJECTS_RESPONSE; } @@ -193,9 +193,9 @@ export class TestUserZeroAPI { afterId: afterId || TEST_USER_ZERO_CONFIG.starredProjects.lastAckedJwtId }; - // eslint-disable-next-line no-console + console.log("๐ŸŒ Making real API call to:", url); - // eslint-disable-next-line no-console + console.log("๐Ÿ“ฆ Request body:", requestBody); const response = await fetch(url, { @@ -217,7 +217,7 @@ export class TestUserZeroAPI { refreshToken(): void { this.jwt = generateTestJWT(); - // eslint-disable-next-line no-console + console.log("๐Ÿ”„ JWT token refreshed"); } diff --git a/test-apps/daily-notification-test/src/router/index.ts b/test-apps/daily-notification-test/src/router/index.ts index d8d2b6c..b06dd1e 100644 --- a/test-apps/daily-notification-test/src/router/index.ts +++ b/test-apps/daily-notification-test/src/router/index.ts @@ -105,7 +105,7 @@ router.beforeEach((to, from, next) => { } // Add loading state - // eslint-disable-next-line no-console + console.log(`๐Ÿ”„ Navigating from ${String(from.name) || 'unknown'} to ${String(to.name) || 'unknown'}`) next() @@ -113,7 +113,7 @@ router.beforeEach((to, from, next) => { router.afterEach((to) => { // Clear any previous errors on successful navigation - // eslint-disable-next-line no-console + console.log(`โœ… Navigation completed: ${String(to.name) || 'unknown'}`) })