Test that initializing ChromiumLoader with proxy=None results in loader.proxy being None.
()
| 662 | |
| 663 | |
| 664 | def test_init_with_no_proxy(): |
| 665 | """Test that initializing ChromiumLoader with proxy=None results in loader.proxy being None.""" |
| 666 | urls = ["http://example.com"] |
| 667 | loader = ChromiumLoader(urls, backend="playwright", proxy=None) |
| 668 | assert loader.proxy is None |
| 669 | |
| 670 | |
| 671 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected