Files
divkit/test_data/parsing_test_data/templates/simple.json
T
pkurchatov 44ca3f5eb3 Added parsing tests
b4f56f91e6930a8afa5c5c0a9b20727c24a1e85f
2024-02-29 12:27:27 +03:00

45 lines
722 B
JSON

{
"description": "Simple template",
"templates": {
"title": {
"type": "text",
"font_size": 20,
"paddings": {
"top": 20,
"bottom": 10
}
}
},
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "title",
"text": "Hello!"
}
}
]
},
"expected": {
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"text": "Hello!",
"font_size": 20,
"paddings": {
"top": 20,
"bottom": 10
}
}
}
]
}
}
}