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

42 lines
689 B
JSON

{
"description": "Template chain",
"templates": {
"base_text": {
"type": "text",
"font_size": 14
},
"bold_text": {
"type": "base_text",
"font_weight": "bold"
}
},
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "bold_text",
"text": "Bold Text"
}
}
]
},
"expected": {
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"font_size": 14,
"font_weight": "bold",
"text": "Bold Text"
}
}
]
}
}
}