From 9c0eac5f41acccb5130a99ea183df0558bf59386 Mon Sep 17 00:00:00 2001 From: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 Date: Thu, 18 Jun 2026 02:07:18 -0400 Subject: [PATCH] style(desktop): wrap long lines in virtualization spec for biome biome check enforces line-wrapping that biome lint does not. The load-older test 07 had two over-width statements that passed local lint but failed the Desktop Core biome check gate. Format-only, no behavior change. Co-authored-by: Will Pfleger Signed-off-by: Will Pfleger --- desktop/tests/e2e/virtualization-screenshots.spec.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/desktop/tests/e2e/virtualization-screenshots.spec.ts b/desktop/tests/e2e/virtualization-screenshots.spec.ts index adef5493c..30f220e3c 100644 --- a/desktop/tests/e2e/virtualization-screenshots.spec.ts +++ b/desktop/tests/e2e/virtualization-screenshots.spec.ts @@ -312,7 +312,9 @@ test.describe("list virtualization screenshots", () => { // (b) the first-visible row sits where it did before the prepend. const after = await sampleAnchor(timeline); expect(after.scrollHeight).toBeGreaterThan(before.scrollHeight + 800); - expect(Math.abs(after.viewportPos - before.viewportPos)).toBeLessThan(120); + expect(Math.abs(after.viewportPos - before.viewportPos)).toBeLessThan( + 120, + ); // Reconcile terminates: two equal scrollTop reads 600ms apart prove the // rAF loop stopped. Under the double-writer bug the library re-scheduled @@ -324,7 +326,9 @@ test.describe("list virtualization screenshots", () => { expect(Math.abs(settled1 - settled2)).toBeLessThan(2); if (run === 0) { - await page.screenshot({ path: `${SHOTS}/07-load-older-anchor-hold.png` }); + await page.screenshot({ + path: `${SHOTS}/07-load-older-anchor-hold.png`, + }); } } });