(a, b)
| 384 | @pytest.mark.asyncio |
| 385 | async def test_expose_function_should_await_returned_promise(page): |
| 386 | async def mul(a, b): |
| 387 | return a * b |
| 388 | |
| 389 | await page.expose_function("compute", mul) |
| 390 | assert await page.evaluate("compute(3, 5)") == 15 |
nothing calls this directly
no outgoing calls
no test coverage detected