Closed3

Next.jsでJest動かしたら "Jest encountered an unexpected token" と言われたので解消したい。

堀川登喜矢堀川登喜矢

$ yarn test
を実行するとこんな感じのエラーで怒られました。
あれ〜?

● Test suite failed to run

    Jest encountered an unexpected token

    Jest failed to parse a file. This happens e.g. when your code or its dependencies use non-standard JavaScript syntax, or when Jest is not configured to support such syntax.

    Out of the box Jest supports Babel, which will be used to transform your files into valid JS based on your Babel configuration.

    By default "node_modules" folder is ignored by transformers.

    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.
     • If you are trying to use TypeScript, see https://jestjs.io/docs/getting-started#using-typescript
     • To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
     • If you need a custom transformation specify a "transform" option in your config.
     • If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.

    You'll find more details and examples of these config options in the docs:
    https://jestjs.io/docs/configuration
    For information about custom transformations, see:
    https://jestjs.io/docs/code-transformation
堀川登喜矢堀川登喜矢

一応下記のGitHub Issueの内容を実行すると直ったっぽい?
https://github.com/vercel/next.js/issues/3663#issuecomment-385361537

  1. tsconfig.jest.jsonを作成して参照1の内容にする
  2. jest.config.jsに参照2の内容を追記する

参照1

{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "jsx": "react"
  }
}

参照2

module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  // ↓↓↓ これを追加する!
  globals: {
    'ts-jest': {
      useBabelrc: true,
      tsConfigFile: './tsconfig.jest.json',
    },
  },
};

堀川登喜矢堀川登喜矢

jest.config.jsのmoduleNameMapperの追加がされていないケースの追記

下記の様にエイリアスを設定している場合のエラー
(nextjs関係無いけど、一応ぶら下げておく)

pages/index
import Layout from '@/components/layout';
// 省略

おそらく既にtsconfig.json辺りでエイリアスを指定しているハズ
webpackでも指定していればそれも既にしているはず。

tsconfig.json
{
  "compilerOptions": {
    // 省略
    "baseUrl": ".",
    "paths": {
      "@/components/*": ["components/*"],
    }
  }
}

だけれどjest側でエイリアスの解決ができていない!
という場合であればjest.config.jsのmoduleNameMapperを指定してあげれば良い。

jest.config.js
{
  // こんな感じにエイリアスを追加
  moduleNameMapper: {
     "^@/components/(.*)$": "<rootDir>/components/$1",
  }
}

参考ドキュメント
https://jestjs.io/ja/docs/configuration#modulenamemapper-objectstring-string--arraystring

このスクラップは2021/12/11にクローズされました