To assert that the array in the response body contains a string value

Hello
I am trying to put an assertion for a specific field value in the array , e.g. ā€œmessageā€ should contain the value as ā€œInvalid property valueā€ in the below response
ā€œerrorsā€: [
{
ā€œerrorā€: 900,
ā€œmessageā€: ā€œInvalid property valueā€,

    }    ]}

postman assertion script is :
let jsonData = pm.response.json()

pm.test(ā€˜The errors contains messageā€™, () => {

_.each(jsonData.Fee, (item) => {

    pm.expect(item.message).to.include("Invalid property value")

})})

but what I observed is this script is passed for following response also

ā€œmessageā€: ā€œSuccessfulā€,
ā€œdecisionā€: ā€œPERMITā€,