This library is only useful if you are using jest-environment-enzyme
. When you are using that library, React and enzyme specific variables are globalized. This lint config lets eslint know about those globals and not warn about them.
Add this extend to your eslint file:
{
"extends": [
"jest-enzyme"
]
}
This configuration only applies to test files that end in *.test.js
.