Is your proposal related to a problem?
I'd like to categorize my jest tests so that I can run only a certain subset of them.
Describe the solution you'd like
There is already a package to facilitate this called jest-runner-groups, but I cannot use this in conjunction with create-react-app since it needs me to set the "runner" option which is not currently supported.
Describe alternatives you've considered
the other alternative is to use --testNamePattern which does work but is more cumbersome to use as I need to include a unique word in the title of every test, or surround them in a describe block
Additional context
(Write your answer here.)
Is your proposal related to a problem?
I'd like to categorize my jest tests so that I can run only a certain subset of them.
Describe the solution you'd like
There is already a package to facilitate this called jest-runner-groups, but I cannot use this in conjunction with create-react-app since it needs me to set the "runner" option which is not currently supported.
Describe alternatives you've considered
the other alternative is to use
--testNamePatternwhich does work but is more cumbersome to use as I need to include a unique word in the title of every test, or surround them in adescribeblockAdditional context
(Write your answer here.)