Files
divkit/test_data/integration_test_data/decl_expressions_simple.json
burstein d919b980ee Supported expressions in variable value field
commit_hash:a341b70bacca741f0cb6ea2f600cc4794c8b36a4
2025-05-15 03:57:55 +03:00

44 lines
729 B
JSON

{
"description": "Decl variable with expression.",
"div_data": {
"card": {
"log_id": "decl_expressions",
"variables": [
{
"name": "val",
"type": "integer",
"value": "@{1 + 2}"
}
],
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"text": "text"
}
}
]
}
},
"cases": [
{
"expected": [
{
"type": "variable",
"variable_name": "val",
"value": {
"type": "integer",
"value": 3
}
}
],
"platforms": [
"android",
"ios",
"web"
]
}
]
}