(page: Page)
| 24 | |
| 25 | @pytest.fixture(autouse=True) |
| 26 | async def calls(page: Page) -> List[Any]: |
| 27 | calls: List[Any] = [] |
| 28 | await page.expose_function("stub", lambda *args: calls.append(list(args))) |
| 29 | return calls |
| 30 | |
| 31 | |
| 32 | class TestRunFor: |
nothing calls this directly
no test coverage detected