Files
divkit/test_data/parsing_test_data/templates/with_array_link.json
T
feldspar 4c0d54dc6d Added tests for template resolution
commit_hash:0ebef77f36d2dcec0a2f8aa5d7605c2422a1197b
2026-02-09 18:55:49 +03:00

56 lines
1018 B
JSON

{
"description": "Template with array link",
"templates": {
"row": {
"type": "container",
"orientation": "horizontal",
"$items": "children"
}
},
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "row",
"children": [
{
"type": "text",
"text": "Item 1"
},
{
"type": "text",
"text": "Item 2"
}
]
}
}
]
},
"expected": {
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "container",
"orientation": "horizontal",
"items": [
{
"type": "text",
"text": "Item 1"
},
{
"type": "text",
"text": "Item 2"
}
]
}
}
]
}
}
}