From 35278053a71ff84e763d772f8925841de1070a5e Mon Sep 17 00:00:00 2001 From: cas Date: Fri, 24 Jul 2026 11:13:36 +0200 Subject: [PATCH] =?UTF-8?q?test:=20e2e=20tests=20voor=20infinite=20scroll?= =?UTF-8?q?=20=E2=80=94=20batch=20loading=20+=20search=20reset?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2 nieuwe Playwright tests: - Sentinels triggeren meer items na scrollIntoView - Zoekopdracht reset paginering terug naar ≤ SEARCH_PAGE_SIZE docker/index.html synced met worker-implementatie --- docker/index.html | 191 +++++++++++++++++++++++++++++++++++----------- tests/e2e.spec.js | 54 +++++++++++++ 2 files changed, 199 insertions(+), 46 deletions(-) diff --git a/docker/index.html b/docker/index.html index ef80903..df9f937 100644 --- a/docker/index.html +++ b/docker/index.html @@ -252,6 +252,19 @@ body { list-style: none; } +.search-sentinel { + height: 1px; + width: 100%; +} + +.search-loading { + display: flex; + justify-content: center; + padding: 16px; + color: var(--text-muted); + font-size: var(--font-sm); +} + .food-item { background: var(--white); border-radius: var(--radius-sm); @@ -2048,6 +2061,7 @@ button:active, .btn:active, .meal-card-main:active, .dagboek-item:active, .food-
+