(self)
| 51 | assert find_component("nope", layout=sample_layout) is None |
| 52 | |
| 53 | def test_finds_by_dict_id(self): |
| 54 | layout = html.Div([html.Div(id={"type": "item", "index": 0})]) |
| 55 | assert find_component({"type": "item", "index": 0}, layout=layout) is not None |
| 56 | |
| 57 | |
| 58 | class TestExtractText: |
nothing calls this directly
no test coverage detected