Demand-load Today and Planning workspace on mobile #1469

Merged
rockachopa merged 7 commits from timmy/1468-demand-load-mobile-workspace into main 2026-08-27 14:46:11 +00:00
Showing only changes of commit 5ccf499b1a - Show all commits

View File

@ -366,7 +366,10 @@ def test_release_artifact_recovers_a_transient_workspace_request_in_place(tmp_pa
try:
with release_server(archives[0], tmp_path, fake_url) as origin, sync_playwright() as playwright:
browser = playwright.chromium.launch(args=["--ignore-certificate-errors"])
page = browser.new_page(viewport={"width": 390, "height": 844})
context = browser.new_context(
viewport={"width": 390, "height": 844}, service_workers="block"
)
page = context.new_page()
page.goto(origin + "/", wait_until="networkidle")
def interrupt_once(route):