2.1.1-popcode.1 • Published 5 years ago

@popcodeorg/eslint-import-resolver-jest v2.1.1-popcode.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

eslint-import-resolver-jest

Greenkeeper badge

"I like my testutils where I can see 'em" 🕵🏽‍♀️

CircleCI

If you're using jest and you have installed custom name mappings in your config via the moduleNameMapper config and you're using the wonderful eslint-plugin-import you might get yelled at by eslint:

(I oftentimes create an alias for the helpers I use for testing)

Let's fix this!

yarn add eslint-import-resolver-jest -D

or

npm i eslint-import-resolver-jest -D

If you are using the package.json config option from jest everything should just work™.

If you are using a separate config file for jest using the --config option you have to point this plugin to it, too (in your .eslintrc):

"settings": {
  "import/resolver": {
    "jest": {
      "jestConfigFile": "./jest.conf.json"
    }
  }
}

That's it!

Note

It will only resolve the modules in your test files that you specified via testRegex or testMatch in your jest config.

Contributing

Create issues in this repo or get active yourself:

yarn test # npm test works, too

License

MIT