From e350c62c01edbca1d42738a4189acb7a0e79b3c8 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Tue, 1 Sep 2026 08:58:25 +0200 Subject: [PATCH] style(e2e): satisfy prettier on catalog-ratings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Frontend Check (format) went red on development after the history-routing change: replacing the two hash deep-links left a line prettier reformats. ⚠️ The gate checks **/*.{js,ts,vue,css,scss} -- TESTS INCLUDED. Checking only src/ (which is what 'npm run lint' covers) misses it, which is how this reached development twice in a row. --- tests/e2e/spec-coverage/catalog-ratings.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/spec-coverage/catalog-ratings.spec.ts b/tests/e2e/spec-coverage/catalog-ratings.spec.ts index 64d86a62..d1b3d121 100644 --- a/tests/e2e/spec-coverage/catalog-ratings.spec.ts +++ b/tests/e2e/spec-coverage/catalog-ratings.spec.ts @@ -136,7 +136,7 @@ async function newAnonymousContext(): Promise { /** Open the seeded module's detail page and wait for the reviews panel. */ async function openModuleReviews(page: Page): Promise { - await page.goto(`${APP_BASE.replace(/\/$/, "")}/modules/${moduleUuid}`, { + await page.goto(`${APP_BASE.replace(/\/$/, '')}/modules/${moduleUuid}`, { waitUntil: 'domcontentloaded', }) await page @@ -379,7 +379,7 @@ test('reviews: a module with no approved reviews shows the empty aggregate, not }) expect(uuid, 'isolated module fixture has no uuid').not.toBe('') - await page.goto(`${APP_BASE.replace(/\/$/, "")}/modules/${uuid}`, { + await page.goto(`${APP_BASE.replace(/\/$/, '')}/modules/${uuid}`, { waitUntil: 'domcontentloaded', }) await page