mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
34 lines
895 B
JSON
34 lines
895 B
JSON
|
[
|
||
|
{
|
||
|
"description": "maxLength validation",
|
||
|
"schema": {"maxLength": 2},
|
||
|
"tests": [
|
||
|
{
|
||
|
"description": "shorter is valid",
|
||
|
"data": "f",
|
||
|
"valid": true
|
||
|
},
|
||
|
{
|
||
|
"description": "exact length is valid",
|
||
|
"data": "fo",
|
||
|
"valid": true
|
||
|
},
|
||
|
{
|
||
|
"description": "too long is invalid",
|
||
|
"data": "foo",
|
||
|
"valid": false
|
||
|
},
|
||
|
{
|
||
|
"description": "ignores non-strings",
|
||
|
"data": 10,
|
||
|
"valid": true
|
||
|
},
|
||
|
{
|
||
|
"description": "two supplementary Unicode code points is long enough",
|
||
|
"data": "\uD83D\uDCA9\uD83D\uDCA9",
|
||
|
"valid": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|