60

I am using jest:24.9.0 without any configuration, installed globally from a create-react-app. Inside these files I am using es6 modules. There is no error when using "test": "react-scripts test"

However when I move to use jest with "test": "jest --config jest.config.js", I see the below error.

 FAIL  src/configuration/notifications.test.js
  ● Test suite failed to run

    /var/www/management/node/src/configuration/notifications.test.js:1
    ({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import notifications from './notifications';
                                                                                             ^^^^^^

    SyntaxError: Cannot use import statement outside a module
skyboyer
  • 22,209
  • 7
  • 57
  • 64
Jamie Hutber
  • 26,790
  • 46
  • 179
  • 291

7 Answers7

64

Jest doesn't support ES6 module and hence throwing this error when you directly run the test with Jest. if you want to run like that then you have to add babel.

On the other side, when you run the test with react-scripts it uses babel behind the scene to Transpile the code.

In newer version of jest, babel-jest is now automatically loaded by Jest and fully integrated

Hope this answer your question.

Adding babel in jest.

Installation

babel-jest is now automatically loaded by Jest and fully integrated. This step is only required if you are using babel-jest to transform TypeScript files.

npm install --save-dev babel-jest

Usage

In your package.json file make the following changes:

{
  "scripts": {
    "test": "jest"
  },
  "jest": {
    "transform": {
      "^.+\\.[t|j]sx?$": "babel-jest"
    }
  }
}

Create .babelrc configuration file

Create a babel.config.json config in your project root and enable some presets.

To start, you can use the env preset, which enables transforms for ES2015+

npm install @babel/preset-env --save-dev

In order to enable the preset you have to define it in your babel.config.json file, like this:

{
  "presets": ["@babel/preset-env"]
}

Check for more details on Babel official site

Audwin Oyong
  • 2,247
  • 3
  • 15
  • 32
Sohail Ashraf
  • 10,078
  • 2
  • 26
  • 42
17

As answers above have described, Jest doesn't support ES6 modules. So, we need transform the code to a supported module type. We could use babel-jest or ts-jest. I recommend using ts-jest for simplicity.

Step 1: installation:

npm i -D ts-jest @types/jest or yarn add --dev ts-jest @types/jest

Step 2: Configuration

Option 1: create a jest configration file jest.config.js

module.exports = {
    transform: {
        '^.+\\.(ts|tsx)$': 'ts-jest',
    },
};

Option 2: add jest configration into package.json

"jest": {
    "transform": {
        "^.+\\.(ts|tsx)$": "ts-jest"
    }
}

Step 3: Execute your script. Everything should be all set now.

applemonkey496
  • 683
  • 1
  • 10
  • 29
paulwen
  • 278
  • 2
  • 7
4

Since jest is not working with esmodules well, you need to add these configurations in jest.config.js to tell Jest to use commonJS builds instead

moduleNameMapper : {
        '^react-dnd$': 'react-dnd/dist/cjs',
        '^react-dnd-html5-backend$': 'react-dnd-html5-backend/dist/cjs',
        '^dnd-core$': 'dnd-core/dist/cjs',
}
BanksySan
  • 27,362
  • 33
  • 117
  • 216
snowyBunny
  • 365
  • 4
  • 8
1

The error

SyntaxError: Cannot use import statement outside a module

might also come from some imported library under node_modules, for example

...\node_modules\node-fetch\src\index.js:9
    import http from 'node:http';
    ^^^^^^

The trick for me was to use the transformIgnorePatterns option in jest config:

transformIgnorePatterns: [
    'node_modules/(?!' + 
        [
            'node-fetch',
            'fetch-blob',
            'data-uri-to-buffer',
            'jest-runtime',
            'formdata-polyfill'
        ].join('|') +
    ')',
],

Also see

How to setup jest with node_modules that use es6

Stefan
  • 10,010
  • 7
  • 61
  • 117
  • This worked for me when I got the error on an import statement for the node module `lucide-svelte`. Thanks a bunch! – Snailedlt Apr 27 '23 at 13:25
0

When you are using Typescript with ECMAScript. The simplest solution is to use use ts-jest, a TypeScript preprocessor:

  1. Install
npm i -D ts-jest @types/jest
  1. Run tests
jest

npm, github

Lars Flieger
  • 2,421
  • 1
  • 12
  • 34
0

I received this same error using react-scripts to run tests. I was able to resolve this issue by changing the line in package.json

"test": "react-scripts test",

to

"test": "NODE_OPTIONS=--experimental-vm-modules react-scripts test",

From the error message which provides the link that suggests this resolution:

Here's what you can do:
 • If you are trying to use ECMAScript Modules, see https://jestjs.io/docs/ecmascript-modules for how to enable it.
Jeremy C
  • 609
  • 5
  • 10
0

I wanted to add how I easily caused this issue for myself.. I freaking prevented myself from committing my jest.config.js file by including all *.js in my .gitignore. Every time my CI ran, I would get this error, because there was no version controlled jest.config.js in my repo. Be careful out there folks! stay frosty.

rjminchuk
  • 899
  • 9
  • 13
  • What did you put in your jest.config.js to avoid the "Cannot use import statement outside a module" error? – Woodchuck Mar 06 '23 at 16:46