fix: complete server pull deployment setup
ForgeFlow quality gate / quality (push) Canceled after 0s

This commit is contained in:
NuklearRabbit
2026-08-09 00:43:08 +02:00
parent 4c21616e72
commit bffad670ef
12 changed files with 110 additions and 25 deletions
+5 -2
View File
@@ -74,8 +74,11 @@ async function assertScrollableWhenOverflowing(page, selector) {
return metrics.connected && metrics.clientHeight > 0;
}).toBe(true);
if (metrics.scrollHeight > metrics.clientHeight + 1) {
await target.evaluate((element) => { element.scrollTop = element.scrollHeight; });
await expect.poll(() => target.evaluate((element) => element.scrollTop)).toBeGreaterThan(0);
await expect.poll(() => target.evaluate((element) => {
if (element.scrollHeight <= element.clientHeight + 1) return 1;
element.scrollTop = element.scrollHeight;
return element.scrollTop;
})).toBeGreaterThan(0);
}
}
test("shell, overview, repositories and settings remain responsive and accessible", async ({ page }, testInfo) => {