()
| 65 | |
| 66 | @pytest_asyncio.fixture(scope="function", autouse=True) |
| 67 | async def async_script_browser_env() -> AsyncGenerator[ |
| 68 | AsyncScriptBrowserEnv, None |
| 69 | ]: |
| 70 | env = AsyncScriptBrowserEnv(headless=HEADLESS, slow_mo=SLOW_MO) |
| 71 | yield env |
| 72 | await env.aclose() |
nothing calls this directly
no test coverage detected