From 00b5f3661a06f49d0cadade1ce3aefeb264a7f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Thu, 27 Nov 2025 13:34:44 -0600 Subject: [PATCH] chore(tests): Clean console logging --- src/lib/Redirector.svelte.test.ts | 1 - src/lib/kernel/LocationLite.svelte.test.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/lib/Redirector.svelte.test.ts b/src/lib/Redirector.svelte.test.ts index 1ee7508..d09fc4f 100644 --- a/src/lib/Redirector.svelte.test.ts +++ b/src/lib/Redirector.svelte.test.ts @@ -457,7 +457,6 @@ describe("Cross-universe Redirection", () => { const redirector = new Redirector(false); // Monitor path universe flushSync(); navigateSpy.mockClear(); - console.debug('Location before redirection:', location.url.href); // Act. redirector.redirections.push({ diff --git a/src/lib/kernel/LocationLite.svelte.test.ts b/src/lib/kernel/LocationLite.svelte.test.ts index 95e0582..fb773e1 100644 --- a/src/lib/kernel/LocationLite.svelte.test.ts +++ b/src/lib/kernel/LocationLite.svelte.test.ts @@ -177,7 +177,6 @@ describe("LocationLite", () => { const currentPath = "/current/path"; window.location.href = `${currentPath}?some=value&plus=another`; location.url.href = window.location.href; - console.debug('Path: ', window.location.pathname); // Act. location.goTo('', { preserveQuery: true });