I'm using some files from another repository which is written in es6 syntax.
The current project also is written with es6 syntax, but Babel is configured so tests don't fail on the imports. but when it tries to import file from that repository it fails. When I rewrite es6 imports and exports into CommonJS require syntax tests does not fail.
Do I need some additional configuration of Jest or Babel?