node-consumer-pact-validation
Version:
A consumer pact generator written for pure nodeJS
24 lines • 466 B
JSON
{
"match": true,
"comment": "Responses match",
"expected" : {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"name": "Mary",
"feet": 4,
"favouriteColours": ["red","blue"]
}
}
},
"actual": {
"headers": {"Content-Type": "application/json"},
"body": {
"alligator":{
"feet": 4,
"name": "Mary",
"favouriteColours": ["red","blue"]
}
}
}
}