Get the validation message fired from a sub microflow

1
I’m writing a unit test for a validation microflow. I want to assert that the validation message (created by a validation feedback action) created by the validation microflow is as expected.   E.g. the validation microflow checks a string for 2 things but returns a boolean to indicate a total pass or failure. Is there a way to “catch” the validation message?
asked
1 answers
0

Hi Derek,

you already mentioned that validation microflow already returns a Boolean to indicate pass or fail.

you want to catch up the validation feedback in UI ?

For this please follow up below step.

1. Place one decision after the validations ,if the Boolean is fail (false) then make sure that false flow navigates to the end event

2. This Validation MF are using as a SUB MF, then get return value from that microflow proceed with the point 1

answered