has anyone had some experience doing unit testing on for flowcharts or workflows? i am going to be making up a set of testers before doing a drastic refactor of hundreds that have been built up over the years, and i want a way to make sure the end results are still the same without having my end users test every possible iteration
front end unit testing for workflows and flowcharts?
Collapse
X
-
You need integration tests. Unit tests are more low level.
You can dump your flowcharts and workflows from the database, then import it in your tests. An integration test may start an entire backend application to perform a test against it.
Integration tests from the EspoCRM repository can be used as guiding examples.

Comment