From 77a31d2b6ea05675b5c1950ba0a1705353ff3e84 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Tue, 14 Jul 2026 11:51:22 +0000 Subject: [PATCH] chore: generate --- .../session-timeline-history-root.spec.ts | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/packages/app/e2e/regression/session-timeline-history-root.spec.ts b/packages/app/e2e/regression/session-timeline-history-root.spec.ts index 5de7d389f2..e5ef7998ea 100644 --- a/packages/app/e2e/regression/session-timeline-history-root.spec.ts +++ b/packages/app/e2e/regression/session-timeline-history-root.spec.ts @@ -137,19 +137,10 @@ for (const scenario of scenarios) { const part = viewport?.querySelector(`[data-timeline-part-id="${CSS.escape(partID)}"]`) const rect = part?.getBoundingClientRect() return ( - !!rect && - !!view && - rect.width > 0 && - rect.height > 0 && - rect.bottom > view.top && - rect.top < view.bottom + !!rect && !!view && rect.width > 0 && rect.height > 0 && rect.bottom > view.top && rect.top < view.bottom ) } - if ( - !virtual || - state.visibleParts.length === 0 || - state.visibleParts.some((partID) => !visible(partID)) - ) + if (!virtual || state.visibleParts.length === 0 || state.visibleParts.some((partID) => !visible(partID))) state.hidden = true state.samples++ }