I have this component:
import React from \'react\'; import VideoTag from \'./VideoTag\'; import JWPlayer from \'./JWPlayer\'; class VideoWrapper extends React.C
The problem were not the paths, It was looking for modules only with .js extension, it worked after adding the .jsx in the jest configuration:
"moduleFileExtensions": [ "js", "jsx" ]