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
You can also set the test env in your test file as follows:
/* eslint-env jest */ describe(() => { /* ... */ })