()
| 348 | @pytest.mark.asyncio |
| 349 | async def test_expose_function_should_throw_exception_in_page_context(page): |
| 350 | def throw(): |
| 351 | raise Exception("WOOF WOOF") |
| 352 | |
| 353 | await page.expose_function("woof", lambda: throw()) |
| 354 | result = await page.evaluate( |
no outgoing calls
no test coverage detected