We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3eb025 commit 07ddc06Copy full SHA for 07ddc06
tests/test_core/test_vdom.py
@@ -317,16 +317,6 @@ def test_invalid_vdom(value, error_message_pattern):
317
validate_vdom_json(value)
318
319
320
-@pytest.mark.skipif(not IDOM_DEBUG_MODE.current, reason="Only logs in debug mode")
321
-def test_debug_log_if_children_in_attributes(caplog):
322
- idom.vdom("div", {"children": ["hello"]})
323
- assert len(caplog.records) == 1
324
- assert caplog.records[0].message.startswith(
325
- "Reserved key 'children' found in attributes"
326
- )
327
- caplog.records.clear()
328
-
329
330
@pytest.mark.skipif(not IDOM_DEBUG_MODE.current, reason="Only logs in debug mode")
331
def test_debug_log_cannot_verify_keypath_for_genereators(caplog):
332
idom.vdom("div", (1 for i in range(10)))
0 commit comments