Exlude graphql
and gql
from fileTransform pattern
#29
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In
packages/react-scripts/scripts/utils/createJestConfig.js
the transform config block contains a pattern to usefileTransform
. The regex for that block of code is a catch all for extensions not referenced. Thoughgraphql
andgql
have there own pattern which intends to use thejest-transform-graphql
module, that pattern is not used because of the aforementioned catch all. This PR simply adds those extensions to allow them to be caught by the intended loader.I should also note that in create-react-app on the next branch, there is a commit which does something very similar to the zeal block for
graphql
files. However in the mean time,graphql
loading for jest is not working, in that agraphql
file loaded in jest is converted to a stringified name via thefileTransform