web-dev-qa-db-ja.com

jest:テストスイートの実行に失敗しました、SyntaxError:予期しないトークンのインポート

これは、package.jsonファイルの jest configuration です。

"jest": {
    "automock": false,
    "browser": true,
    "moduleNameMapper": {
      "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./app/tests/mocks/FileMock.js",
      "\\.(css|less)$": "identity-obj-proxy"
    },
    "moduleFileExtensions": [
      "js",
      "jsx"
    ],
    "moduleDirectories": [
      "node_modules"
    ],
    "transform": {
      "^.+\\.jsx?$": "./node_modules/babel-jest",
      "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./app/tests/mocks/FileTransformer.js"
    },
    "testEnvironment": "jsdom",
    "testPathDirs": [
      "./app/tests"
    ],
    "testRegex": ".*.test.js",
    "verbose": true
  }

そして、私のルートフォルダにある.babelrcファイル:

{
  "plugins": ["syntax-dynamic-import", "transform-runtime"],
  "presets": [
    [
      "es2015",
      {
        "modules": false
      }
    ],
    "react",
    "stage-0"
  ],
  "env": {
    "start": {
      "presets": [
        "react-hmre"
      ]
    }
  }
}

Jestで見つかったドキュメントによると 開始ページ これがbabelが機能するために必要なものすべてです。

とにかく、このテスト:

import React from 'react';
import {shallow} from 'enzyme';
import Landing from '../components/Landing.component';

describe('<Landing/>', () => {
  it('should render a header to the page', () => {
    const landing = shallow(<Landing/>);
    expect(landing.find('h1').text()).toBe('This is the Landing component');
  });
});

返却値:

FAIL  app/tests/Landing.component.test.js   
 ● Test suite failed to run

   /Users/shooshte/PersonalProjects/surviveJS/app/tests/Landing.component.test.js:1
   ({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import React from 'react';
                                                                                            ^^^^^^
   SyntaxError: Unexpected token import

     at transformAndBuildScript (node_modules/jest-runtime/build/transform.js:320:12)

私は何を間違えていますか?

38

Jestはenv変数をtestに設定するため、.babelrcのenv設定にプリセットを追加する必要がありました。

{
  "plugins": ["syntax-dynamic-import", "transform-runtime"],
  "presets": [
    [
      "es2015",
      {
        "modules": false
      }
    ],
    "react",
    "stage-0"
  ],
  "env": {
    "start": {
      "presets": [
        "react-hmre"
      ]
    },
    "test": {
      "presets": ["es2015", "react", "stage-0"]
    }
  }
}
36

各年のプリセットは、その年に承認されたもののみをコンパイルします。 babel-preset-envはes2015es2016es2017latestを置き換えます

これに基づいて、最新の構成では、es2015およびesXのプラグイン/プリセットを新しいものenvに使用/置換する必要があります。

  1. babel-preset-envとともにnpm installをインストールする必要があります。
  2. .babelrcで、それに応じて更新する必要があります。
{
  "presets": [
    "env", 
    "stage-0", 
    "react-native"
  ],
  "plugins": ...
}

Babel plugins official Documentation の詳細。

array️配列内のプラグイン/プリセットの順序が重要であることを忘れないでください。

3
Fernando Cea

Babel-jestをインストールする必要があります。同じ問題がありました。

アプリのディレクトリに移動し、babel-jestを追加します

幸運を!

3
Pengfei Chen

私の場合、次の.babelrc構成がありました。

{
  "presets": [
    ["env", { "modules": false }],
    "react",
    "stage-2"
  ],
  "plugins": [
    "transform-runtime",
    "transform-class-properties",
    "react-hot-loader/babel"
  ]
}

babel-envが指定されていても、エラーが発生しました。修正するには、"modules":falseフラグを削除する必要がありました。

2

次の.babelrcは機能します(追加なし)。

{
  "presets": [["env", {
    "debug": false,
    "modules": false
  }],  "es2015", "stage-0", "react"],
  "plugins": [
    "react-hot-loader/babel",
    "syntax-dynamic-import",
    "dynamic-import-node",
    "transform-class-properties",
    "transform-decorators-legacy"
  ]
}

package.jsonの「devDependencies」セクションは次のようになります。

...
"devDependencies": {
  "babel-cli": "latest",
  "babel-core": "^6.26.3",
  "babel-eslint": "^8.2.3",
  "babel-jest": "^22.4.4",
  "babel-loader": "latest",
  "babel-plugin-dynamic-import-node": "^1.2.0",
  "babel-plugin-lodash": "latest",
  "babel-plugin-syntax-dynamic-import": "^6.18.0",
  "babel-plugin-transform-class-properties": "^6.24.1",
  "babel-plugin-transform-decorators-legacy": "latest",
  "babel-plugin-transform-dynamic-import": "^2.0.0",
  "babel-plugin-transform-flow-strip-types": "^6.22.0",
  "babel-plugin-transform-object-rest-spread": "latest",
  "babel-polyfill": "^6.26.0",
  "babel-preset-env": "^1.7.0",
  "babel-preset-flow": "^6.23.0",
  "babel-preset-react": "^6.24.1",
  "babel-preset-react-app-babel-7": "^4.0.1",
  "babel-preset-stage-0": "^6.24.1",
 ...
0
Roman

Jestはインポートを処理しないため、変換プラグインが必要です。このため、プラグインを追加する必要がありました。

babel-plugin-dynamic-import-node

babel設定を更新して、jestにこのプラグインを使用してコードを適切に変換するように指示します。

"env": {
    "test": {
      "plugins" : ["dynamic-import-node"]
    }
  }

GitHubスレッド

0
Periback