I\'m attempting to use the ESLint linter with the Jest testing framework.
Jest tests run with some globals like jest, which I\'ll need to tell the lin
jest
some of the answers assume you have 'eslint-plugin-jest' installed, however without needing to do that, you can simply do this in your .eslintrc file, add:
.eslintrc
"globals": { "jest": true, }