node-consumer-pact-validation
Version:
A consumer pact generator written for pure nodeJS
20 lines • 369 B
JSON
{
"match": false,
"comment": "Number of feet expected to be number but was string",
"expected" : {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"feet": 4
}
}
},
"actual": {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"feet": "4"
}
}
}
}