error: Assert Failure --> tests/error_predicate.hurl:4:0 | 4 | jsonpath "$.status" equals "true" | actual: bool | expected: string | error: Assert Failure --> tests/error_predicate.hurl:6:0 | 6 | jsonpath "$.count" equals 0 | actual: int <1> | expected: int <0> | error: Assert Failure --> tests/error_predicate.hurl:7:0 | 7 | jsonpath "$.message" equals 0 | actual: string <0> | expected: int <0> | error: Assert Failure --> tests/error_predicate.hurl:8:0 | 8 | jsonpath "$.empty" equals 0 | actual: string <> | expected: int <0> | error: Assert Failure --> tests/error_predicate.hurl:9:0 | 9 | jsonpath "$.number" equals 1.1 | actual: float <1.0> | expected: float <1.100000000000000000> | error: Assert Failure --> tests/error_predicate.hurl:10:0 | 10 | jsonpath "$.message" startsWith "hi" | actual: string <0> | expected: starts with string | error: Assert Failure --> tests/error_predicate.hurl:11:0 | 11 | jsonpath "$.message" contains "hi" | actual: string <0> | expected: contains string | error: Assert Failure --> tests/error_predicate.hurl:12:0 | 12 | jsonpath "$.message" matches "hi" | actual: string <0> | expected: matches regex | error: Assert Failure --> tests/error_predicate.hurl:13:0 | 13 | jsonpath "$.message" countEquals 1 | actual: string <0> | expected: count equals to <1> | >>> types between actual and expected are not consistent | error: Assert Failure --> tests/error_predicate.hurl:14:0 | 14 | jsonpath "$.toto" exists | actual: none | expected: something | error: Assert Failure --> tests/error_predicate.hurl:15:0 | 15 | jsonpath "$.message" not exists | actual: string <0> | expected: not something | error: Assert Failure --> tests/error_predicate.hurl:16:0 | 16 | jsonpath "$.list" countEquals 2 | actual: 3 | expected: 2 |