Can't figure out how to resolve these errors yet, Jest is complaining about dynamic imports like these:
const importModules = Promise.all([
import('containers/HomePage/reducer'),
import('containers/HomePage/sagas'),
import('containers/HomePage'),
]);
Error message:
F:\react-boilerplate\app\store.js:49
import('./reducers').then(function (reducerModule) {
^^^^^^
SyntaxError: Unexpected token import
You can find all of the details here: https://github.com/mxstbr/react-boilerplate/pull/1358
Installing
babel-plugin-dynamic-import-node
solved our problem. In addition, make sure thatbabylon
(babel
dependency) is at least6.12.0
.Also, we had a problem with Travis build because Travis cached
node_modules
and oldbabylon
with it:, so we had to turn the cache off with:
cache: false