node-consumer-pact-validation
Version:
A consumer pact generator written for pure nodeJS
20 lines • 413 B
JSON
{
"match": false,
"comment": "Favourite Numbers expected to be numbers, but 2 is a string",
"expected" : {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"favouriteNumbers": [1,2,3]
}
}
},
"actual": {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"favouriteNumbers": [1,"2",3]
}
}
}
}