-
Notifications
You must be signed in to change notification settings - Fork 46
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
Feature request: provide a way to run with --quiet and --fix options #10
Comments
Hi 👋, Thanks for reporting! Yeah this will be real nice. I think this is part of a broader discussion (How to configure Jest runners?), for which there is an ongoing discussion here -> jestjs/jest#4278 Off the top of my head I think of some different paths that we could take.
This doesn't mean that they are the correct solutions, so I'm more than open to better solutions |
Can runner options be passed on the command line? |
That would be awesome but right now Jest returns
|
That's not what I meant - custom reporters in a jest config can take options https://facebook.github.io/jest/docs/en/configuration.html#reporters-array-modulename-modulename-options - can those be provided via command line at all, in |
Oh sorry, I misunderstood... my bad! No, runners can't do that right now, but that is one of the proposals on how to add configs to runners jestjs/jest#4278 (comment) |
I sometimes want to run eslint with the
--quiet
and--fix
options to autofix rules across large numbers of files. I was unable to find a way to use these options with the jest runner and think it would be really great if there was a way.If there is already a way, it would be wonderful to document it!
The text was updated successfully, but these errors were encountered: