Skip to content
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

Add support for customizing Jest config with react-app-rewired #2396

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

acostadelivra
Copy link

Loads the react-app-rewired library (if present) in order to customize the Jest config provided by react-scripts. This allows customizing the config further than what react-scripts normally allows, without ejecting.

This is normally accomplished via the command line like "npx react-app-rewired test". I think requiring the overrides/jest.js file is the most appropriate way to load it directly.

@joj joj requested review from safacero, armanio123 and joj June 15, 2022 16:43
@joj
Copy link
Member

joj commented Jun 16, 2022

Hi! I'm trying to better understand your scenario. Is this just a convenient way of avoiding "npx react-app-rewired test" or is it required for what you're doing?
The code in this repo is shipped with Visual Studio, an so we try to be as minimal as we can when running dependencies, for security reasons. I do understand this is just one more dependency and this file already has some, but this change may make react-app-rewired invisible in some scenarios, which is something we'd rather avoid.
Thanks! J

@acostadelivra
Copy link
Author

We're trying to get our test results in Test Explorer rather than through the command line, so in that sense it's required. There seems to be no way to override the react-scripts config in the current TestAdapter code as far as I can tell. I completely understand the security concern though, and I think it can be worked around.

react-app-rewired just loads a 'config-overrides.js' file in the project root (similar to jest.config.js) and uses it to transform the react-scripts output.
Instead of requiring the react-app-rewired package, it should be simple enough to just apply the config-overrides without it.
I think it would still be appropriate to check for react-app-rewired's existence in node_modules in case a user just happens to have an unrelated config-overrides.js in their project root though.

Let me know if this sounds like a better plan and I'll go ahead implement it.

@acostadelivra
Copy link
Author

Sorry for the long delay, I lost track of this PR. I've updated it so that react-app-rewired is never directly executed. Instead just the user supplied config-overrides script is used. This should be equivalent and less invasive.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants