node-consumer-pact-validation
Version:
A consumer pact generator written for pure nodeJS
20 lines • 347 B
JSON
{
"match": false,
"comment": "Name should not be null",
"expected" : {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"name": "Mary"
}
}
},
"actual": {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"name": null
}
}
}
}