From 7f2ba4d7272b513e48445e4ba61b1dfb134c0b23 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Tue, 5 Aug 2025 17:47:40 +0200 Subject: [PATCH] Fix test --- tests/playwright/LoadingSpinner.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/LoadingSpinner.test.ts b/tests/playwright/LoadingSpinner.test.ts index 9df680e3..c42daab7 100644 --- a/tests/playwright/LoadingSpinner.test.ts +++ b/tests/playwright/LoadingSpinner.test.ts @@ -1,7 +1,7 @@ import {expect, test} from '@playwright/test'; test('shows loading spinner on load', async ({page}) => { - await page.goto('http://localhost:3000/profiles'); // Adjust this to your route + await page.goto('http://localhost:3000/profile'); // Adjust this to your route const spinner = page.locator('[data-testid="spinner"]'); await expect(spinner).toBeVisible();