The solutions offered in other related questions, such as including the proper presets (es2015) in .babelrc, are already implemented in my project.
I have two projec
I had {"modules": false} in my .babelrc file, like so:
{"modules": false}
"presets": [ ["es2015", {"modules": false}], "stage-2", "react" ]
which was throwing
Unexpected token import
Once i removed it, mocha ran successfully.