Files
pkurchatov 44ca3f5eb3 Added parsing tests
b4f56f91e6930a8afa5c5c0a9b20727c24a1e85f
2024-02-29 12:27:27 +03:00

64 lines
1.3 KiB
JSON

{
"description": "All values are parsed corectly",
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"auto_ellipsize": true,
"background": [
{
"type": "gradient",
"colors": [
"#112233",
"#332211"
]
}
],
"font_weight": "bold",
"font_size": 20,
"text": "Hello!",
"text_color": "#AABBCC",
"transition_triggers": [
"data_change",
"state_change"
]
}
}
]
},
"expected": {
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"auto_ellipsize": true,
"background": [
{
"type": "gradient",
"colors": [
"#112233",
"#332211"
]
}
],
"font_weight": "bold",
"font_size": 20,
"text": "Hello!",
"text_color": "#AABBCC",
"transition_triggers": [
"data_change",
"state_change"
]
}
}
]
}
}
}