Closed christeredvartsen closed 8 years ago
Currently there is no way of checking a JSON response that has a numerical array as the root property:
[ "foo", 123, { "foo": "bar" } ]
This could be solved by implementing support for the following syntax (that matches existing format):
{ "[0]": "foo", "[1]": 123, "[2]": { "foo": "bar" } }
This should also support the custom functions (length, atLeast and atMost) and also regular expressions.
length
atLeast
atMost
Currently there is no way of checking a JSON response that has a numerical array as the root property:
This could be solved by implementing support for the following syntax (that matches existing format):
This should also support the custom functions (
length
,atLeast
andatMost
) and also regular expressions.