(component_written_class)
| 113 | |
| 114 | |
| 115 | def test_required_props(component_written_class): |
| 116 | with pytest.raises(Exception): |
| 117 | component_written_class() |
| 118 | component_written_class(id="test") |
| 119 | with pytest.raises(Exception): |
| 120 | component_written_class(id="test", lahlah="test") |
| 121 | with pytest.raises(Exception): |
| 122 | component_written_class(children="test") |
| 123 | |
| 124 | |
| 125 | def test_attrs_match_forbidden_props(component_class): |
nothing calls this directly
no test coverage detected
searching dependent graphs…