Miguel Heitor
01/23/2024, 10:41 AM{
items: {
123: {
id: 123, -> i want to check this
type: 'type' -> i want to check this
},
456: {
id: 456,
type: 'another_type'
}
}
}
im trying on the consumer side to add a similar response on the willRespondWith
, but im not being able to make the key part as those are being set in the provider state and im not able to add a functionMiguel Heitor
01/23/2024, 10:43 AMMiguel Heitor
01/23/2024, 11:42 AMeachKeyMatches
and seems to work for what I was trying to do 🙂
thanks anyway!Matt (pactflow.io / pact-js / pact-go)