When you run jest --coverage, what does the Branches column do/mean? When you run jest --coverage, what does the Branches column do/mean? reactjs reactjs

When you run jest --coverage, what does the Branches column do/mean?


Conditional statements create branches of code which may not be executed (e.g. if/else). This metric tells you how many of your branches have been executed.