diff --git a/tests/test_playwright.py b/tests/test_playwright.py index 0018589..0816e23 100644 --- a/tests/test_playwright.py +++ b/tests/test_playwright.py @@ -815,6 +815,7 @@ def test_artifact_collection(browser, page, new_context): other_context = new_context() other_context_page = other_context.new_page() other_context_page.goto("data:text/html,
hello
") + other_context_page.evaluate("new Promise(fulfill => requestAnimationFrame(() => requestAnimationFrame(fulfill)))") other_context.close() """ )