(self, browser: Browser)
| 326 | @pytest.mark.skip(reason='Flaky under the CI environment') |
| 327 | @pytest.mark.asyncio |
| 328 | async def test_http3_works(self, browser: Browser) -> None: |
| 329 | impit = AsyncClient(browser=browser, http3=True) |
| 330 | |
| 331 | response = await impit.get('https://curl.se', force_http3=True) |
| 332 | assert response.status_code == 200 |
| 333 | assert 'curl' in response.text |
| 334 | assert response.http_version == 'HTTP/3' |
| 335 | |
| 336 | @pytest.mark.asyncio |
| 337 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected