-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Testing Library #8959
Comments
We're currently working on upgrading to Jest 26 so we'll definitely be bumping the testing library dependencies before release. As far as the new ESLint plugins, we should be able to add those pretty easily as well. Someone just needs to make a PR for it. Not sure if we will need to customize any config for them. |
For anyone who wants to work on adding the eslint plugins, here's a config that I personally recommend: https://github.com/kentcdodds/eslint-config-kentcdodds/blob/c2b55abe30270b105eb7ce8cf65bfd24dc4125cf/jest.js#L76-L104 (Don't forget the plugins entries https://github.com/kentcdodds/eslint-config-kentcdodds/blob/c2b55abe30270b105eb7ce8cf65bfd24dc4125cf/jest.js#L28-L32). I'm not sure whether the |
And here's where the config would need to be added: https://github.com/facebook/create-react-app/blob/master/packages/eslint-config-react-app/index.js And the two plugins would need to be installed here: https://github.com/facebook/create-react-app/blob/master/packages/eslint-config-react-app/package.json |
Oh, also, any thoughts on this:
|
It's been a long standing question (#1217) that we've had. Interested to know if there's significant demand still I personally generally end up creating my own lint script in my project that might include some other tooling as well in addition to ESLint. The biggest reason for me was the ability to lint test files including running |
As far as the testing library packages go, they were updated to latest at the time in #8406. |
This is done and will be in the next release so I'm going to close this issue. |
Is your proposal related to a problem?
I want to ensure people are set up for success when testing
Describe the solution you'd like
The default template should include the latest version of testing library packages.
Also, the ESLint config should include the testing library ESLint plugins:
With that in mind, how do people typically run linting for files not bundled by webpack? Should we include a lint script?
Describe alternatives you've considered
Leaving things as-is and letting users do this themselves.
Additional context
I've noticed people making some common mistakes and want to help them avoid those.
The text was updated successfully, but these errors were encountered: