I have installed Jest v17.0.3 in my react project.
When I run jest locally it works fine, but on the build server it fails with:
Error: Cannot fin
use same version of react and react-dom. My problem fixed after using this command
npm install --save react@15.4.0 react-dom@15.4.0
this problem specially occurs on react 15.4.0 above.