()
| 22 | |
| 23 | |
| 24 | def test_write_error(): |
| 25 | s = SaveHar() |
| 26 | |
| 27 | with pytest.raises(FileNotFoundError): |
| 28 | s.export_har([], types.Path("unknown_dir/testing_flow.har")) |
| 29 | |
| 30 | |
| 31 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…