(value, error_message_pattern)
| 276 | ], |
| 277 | ) |
| 278 | def test_invalid_vdom(value, error_message_pattern): |
| 279 | with pytest.raises(JsonSchemaException, match=error_message_pattern): |
| 280 | validate_vdom_json(value) |
| 281 | |
| 282 | |
| 283 | @pytest.mark.skipif(not REACTPY_DEBUG_MODE.current, reason="Only warns in debug mode") |
nothing calls this directly
no test coverage detected