Skip to content

Commit 019a70b

Browse files
committed
Merge remote-tracking branch 'origin/main' into ochafik/dev-summit-talk-2026
2 parents 8d94105 + 4f4dd8b commit 019a70b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/e2e/pdf-viewer-zoom.spec.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,13 @@ test.describe("PDF Viewer — fullscreen fit + pinch zoom", () => {
6363
await waitForPdfRender(page);
6464
const app = getAppFrame(page);
6565

66+
// Initial fit-to-width measures container.clientWidth immediately after
67+
// showViewer() flips display:flex; under CI load the reflow can lag, so
68+
// poll until the shrink-to-fit scale has actually applied.
69+
await expect
70+
.poll(() => readZoomPercent(page), { timeout: 5000 })
71+
.toBeLessThan(100);
6672
const inlineZoom = await readZoomPercent(page);
67-
expect(inlineZoom).toBeLessThan(100);
6873

6974
// Widen + give plenty of height, then enter fullscreen. Fullscreen uses
7075
// fit-to-PAGE (whole page visible), so the resulting zoom is whichever

0 commit comments

Comments
 (0)