mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			896 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			896 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": 100,
 | 
						|
                "valid": true
 | 
						|
            },
 | 
						|
            {
 | 
						|
                "description": "two supplementary Unicode code points is long enough",
 | 
						|
                "data": "\uD83D\uDCA9\uD83D\uDCA9",
 | 
						|
                "valid": true
 | 
						|
            }
 | 
						|
        ]
 | 
						|
    }
 | 
						|
]
 |