-
-
Notifications
You must be signed in to change notification settings - Fork 27k
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
node_modules Mocks are not picked up by jest with latest react-scripts #7539
Comments
I can't reproduce this with 3.1.1, we have a |
@FezVrasta |
This may have been caused by #7480. |
This is problematic because If we're not going to revert #7480, I feel we should at least document the new jest source since it is not standard and document the risk of collision. |
@jnak even under src the mocks work just fine. I always did it that way |
I know they work. But it is not standard (as per the Anyway, I don't feel strongly about it. I just wanted to let you know of this undocumented gotcha. |
What to do guys? Shall we just move the mocks to src folder and hope for no collisions? We only have about 3-4 projects to upgrade. |
Honestly I think #7480 should be reverted, or at least just let us set the |
No pressure, but would be good to know the decision if we should move the mocks to upgrade. Thanks! |
We may be able to specify |
@ianschmitz I've tried adding the project root to the |
Correct - we don't support modifying Try something like: {
roots: ['<rootDir>/src', '<rootDir>/__mocks__'],
...
} |
I'm working on a PR for this to add The watcher used by Jest ( I assume we want to use heuristics to check if the directory exists and push it onto roots if it does? Would this be the correct way to check for the directory?
|
For those whose test's are completely broken by this: |
@brendanmc6 the issue is this is an anti-pattern. The Jest documentation says that any external module manual mocks must live in the same level as |
As a temporary solution, I moved mocks to /src folder. But this is kind of very annoying bug, which blocks a very useful feature of Jest. As an example, I do want to mock Axios only once in my code for the whole project and it will be nice if it could be done according to Jest documentation. |
Strangely this happened to me in two other projects as well, a Next.JS and a React Native project, both times because my CI was failing (local tests were passing). In both cases moving it to a subfolder other than root solved the problem. Just leaving this here for the paper trail-- I can't seem to find any other issues listed anywhere. |
Can this be fixed soon, I can't mock node_modules as per jest documentation. |
* Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE
* Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE
* Add metadata store protos * Add generated grpc protos for ml_metadata * Uses the version from Pipelines * Add generated grpc protos for ml_metadata * Bump `react-scripts` to 3.2.0 to support `EXTEND_ESLINT` environment variable, which is needed to `eslintIgnore` generated protos. * Add `api:metadata` script to regenerate grpc-web protos for ml_metadata. * Proxy requests to server to metadata-envoy-service * Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE * Switch ArtifactList getArtifactTypes to ml_metadata * Major changes 1.0 - Migrated half of lineage components - Rewrote all components in TS, updated and optimized to work in codebase - Css updated - **Erroneous, will fix** - Added gitignore - Added linter packages - Fixed spacing * Imported all elements * All of Lineage Explorer added: - All lineage components added - Card styles for target / execution cards - Rewrote the EdgeCavas renderer - Dyanmic updates and CSS updates to match live view - State diffing and rendering updates - Mocked data and presented on UI, via dynamic data - Z-indexing logic added to support reverse flipped connectors - State logic updated to match standard - Es6 Magic and refactor - Massive css updates (radio button revamp, et al) * Move changes to LineageView.tsx, which can then be used once Kwasi's changes are in * Resolved Kwasi's comments
* Add metadata store protos * Add generated grpc protos for ml_metadata * Uses the version from Pipelines * Add generated grpc protos for ml_metadata * Bump `react-scripts` to 3.2.0 to support `EXTEND_ESLINT` environment variable, which is needed to `eslintIgnore` generated protos. * Add `api:metadata` script to regenerate grpc-web protos for ml_metadata. * Proxy requests to server to metadata-envoy-service * Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE * Switch ArtifactList getArtifactTypes to ml_metadata * Major changes 1.0 - Migrated half of lineage components - Rewrote all components in TS, updated and optimized to work in codebase - Css updated - **Erroneous, will fix** - Added gitignore - Added linter packages - Fixed spacing * Imported all elements * All of Lineage Explorer added: - All lineage components added - Card styles for target / execution cards - Rewrote the EdgeCavas renderer - Dyanmic updates and CSS updates to match live view - State diffing and rendering updates - Mocked data and presented on UI, via dynamic data - Z-indexing logic added to support reverse flipped connectors - State logic updated to match standard - Es6 Magic and refactor - Massive css updates (radio button revamp, et al) * Move changes to LineageView.tsx, which can then be used once Kwasi's changes are in * Resolved Kwasi's comments
* Add metadata store protos * Add generated grpc protos for ml_metadata * Uses the version from Pipelines * Add generated grpc protos for ml_metadata * Bump `react-scripts` to 3.2.0 to support `EXTEND_ESLINT` environment variable, which is needed to `eslintIgnore` generated protos. * Add `api:metadata` script to regenerate grpc-web protos for ml_metadata. * Proxy requests to server to metadata-envoy-service * Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE * Switch ArtifactList getArtifactTypes to ml_metadata * Major changes 1.0 - Migrated half of lineage components - Rewrote all components in TS, updated and optimized to work in codebase - Css updated - **Erroneous, will fix** - Added gitignore - Added linter packages - Fixed spacing * Imported all elements * All of Lineage Explorer added: - All lineage components added - Card styles for target / execution cards - Rewrote the EdgeCavas renderer - Dyanmic updates and CSS updates to match live view - State diffing and rendering updates - Mocked data and presented on UI, via dynamic data - Z-indexing logic added to support reverse flipped connectors - State logic updated to match standard - Es6 Magic and refactor - Massive css updates (radio button revamp, et al) * Move changes to LineageView.tsx, which can then be used once Kwasi's changes are in * Resolved Kwasi's comments
* Add metadata store protos * Add generated grpc protos for ml_metadata * Uses the version from Pipelines * Add generated grpc protos for ml_metadata * Bump `react-scripts` to 3.2.0 to support `EXTEND_ESLINT` environment variable, which is needed to `eslintIgnore` generated protos. * Add `api:metadata` script to regenerate grpc-web protos for ml_metadata. * Proxy requests to server to metadata-envoy-service * Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE * Switch ArtifactList getArtifactTypes to ml_metadata * Major changes 1.0 - Migrated half of lineage components - Rewrote all components in TS, updated and optimized to work in codebase - Css updated - **Erroneous, will fix** - Added gitignore - Added linter packages - Fixed spacing * Imported all elements * All of Lineage Explorer added: - All lineage components added - Card styles for target / execution cards - Rewrote the EdgeCavas renderer - Dyanmic updates and CSS updates to match live view - State diffing and rendering updates - Mocked data and presented on UI, via dynamic data - Z-indexing logic added to support reverse flipped connectors - State logic updated to match standard - Es6 Magic and refactor - Massive css updates (radio button revamp, et al) * Move changes to LineageView.tsx, which can then be used once Kwasi's changes are in * Resolved Kwasi's comments
…165) * Add metadata store protos * Add generated grpc protos for ml_metadata * Uses the version from Pipelines * Add generated grpc protos for ml_metadata * Bump `react-scripts` to 3.2.0 to support `EXTEND_ESLINT` environment variable, which is needed to `eslintIgnore` generated protos. * Add `api:metadata` script to regenerate grpc-web protos for ml_metadata. * Proxy requests to server to metadata-envoy-service * Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE * Switch ArtifactList getArtifactTypes to ml_metadata * Switch ArtifactList getArtifacts to ml_metadata * Use gRPC to fetch ArtifactDetails and ExecutionDetails * Mock grpc-web network calls * Use ml_metadata.Artifact in ModelInfo * Move repeated test model creation to TestUtils * Regenerate snapshot: ArtifactDetails.test.tsx.snap - Closing `}` were replaced with `)` in the commit to convert the snapshot to include a generated proto instead of a `Object` * Use ml_metadata.Exectuion in ExecutionList * Cleanup unused rpc in ArtifactList * Fix null check in ExecutionDetails * Regenerate ArtifactDetails snapshot after merging tabs with gRPC * Rewrite start-proxy.sh in node * Rewrite start-proxy.sh in node * Cosmetic changes to start-proxy.js * Fix brace styles * Rewrite gen_gprc_web_protos in node * Switch from @improbable-eng/grpc-web to grpc-web * Update grpc-web mock and fix failures in ArtifactDetails.test * Update Python SDK to use MLMD gRPC service (#156) * code complete; test passed * update e2e test * update comments * lint * lint & address comments * lint with yapf --style '{based_on_style: google, indent_width: 2}' * Adding Typing Hints; Rewrite docstrings * address comments * lint * [MLMD Lineage] Initial Lineage explorer draft implemented (#159) * Add metadata store protos * Add generated grpc protos for ml_metadata * Uses the version from Pipelines * Add generated grpc protos for ml_metadata * Bump `react-scripts` to 3.2.0 to support `EXTEND_ESLINT` environment variable, which is needed to `eslintIgnore` generated protos. * Add `api:metadata` script to regenerate grpc-web protos for ml_metadata. * Proxy requests to server to metadata-envoy-service * Move <rootDir>/__mocks__ into src to work around react-scripts@3.2.0 bug * facebook/create-react-app#7539 * Add `start-proxy.sh` to port forward to metadata-ui:3000 * Regenerate ArtifactList.test.tsx.snap - Old snapshots genreated with node 9.9.0 fail in node 12.13 used by docker image * Whitelist @jest/* packages in gen_licenses.js and point to third_party/jest/LICENSE * Switch ArtifactList getArtifactTypes to ml_metadata * Major changes 1.0 - Migrated half of lineage components - Rewrote all components in TS, updated and optimized to work in codebase - Css updated - **Erroneous, will fix** - Added gitignore - Added linter packages - Fixed spacing * Imported all elements * All of Lineage Explorer added: - All lineage components added - Card styles for target / execution cards - Rewrote the EdgeCavas renderer - Dyanmic updates and CSS updates to match live view - State diffing and rendering updates - Mocked data and presented on UI, via dynamic data - Z-indexing logic added to support reverse flipped connectors - State logic updated to match standard - Es6 Magic and refactor - Massive css updates (radio button revamp, et al) * Move changes to LineageView.tsx, which can then be used once Kwasi's changes are in * Resolved Kwasi's comments * Switch ArtifactList getArtifacts to ml_metadata * Rewrite start-proxy.sh in node * Switch from @improbable-eng/grpc-web to grpc-web * Fix package.json change introduced in rebase * Render LineageView in ArtifactDetails.LINEAGE_EXPLORER tab * Update ArtifactDetails snapshot * Update helper scripts - Fix extra parentheses in start-proxy.js and - Remove gen_grpc_web_protos.sh
…t of project. See facebook#7539 (comment) for further information.
Hi @KennethSundqvist, how's it going with your proposed fix? |
@brendanmc6 Thanks! spent about three hours to figure this out. |
Is there any progress with the PR for this issue fix? This feature is quite helpful for my testing |
still no fix? :/ This is also not working on React Native 0.62 |
I spent a lot of time today trying to figure out what I was doing wrong while following the jest module mock documentation very closely. Ideally CRA templates that use jest should contain the same defaults as plain-old-jest since react documentation directs newbies to use CRA. |
Learning Create React App and trying to follow TDD, it is very frustrating to have spent two days doubting myself what I have done wrong only to find out it is due to a downstream change and that the patch to fix it has stagnated for more than half a year. If the fix is not making it in anytime soon, could you please at least leave a note in the documentation? |
It's been more than half a year, should we expect the patch to fix this soon? |
Not sure if this would solve the issue for everyone else. For me, I ended up using CRACO to override the default Jest configs. Here's an example (my additional tests were in module.exports = {
jest: {
configure: {
roots: [
'<rootDir>/electron',
],
testMatch: [
'<rootDir>/electron/**/__tests__/**/*.{js,jsx,ts,tsx}',
'<rootDir>/electron/**/*.{spec,test}.{js,jsx,ts,tsx}',
],
},
},
}; |
Please update the documentation if there is no plan to rectify this. I (and many others, I'm sure) have wasted a lot of time trying to figure out why what is specified in the documentation doesn't work. |
I've gone and used patch-package to fix this on my repos: Step 1: create the ├── src Step 2: patch // node_modules/react-scripts/scripts/utils/createJestConfig.js
const config = {
- roots: ['<rootDir>/src'],
+ roots: ['<rootDir>/src', '<rootDir>/__mocks__'], Warning: This breaks jest if the |
Describe the bug
When upgrading from react-scripts@3.0.1 to latest the mocks are no longer picked up from /__mocks__ directory
Did you try recovering your dependencies?
YES
Which terms did you search for in User Guide?
jest manual mocks broken
Environment
Environment Info:
System:
OS: macOS 10.14.5
CPU: (8) x64 Intel(R) Core(TM) i7-7920HQ CPU @ 3.10GHz
Binaries:
Node: 12.8.0 - /usr/local/bin/node
Yarn: 1.17.3 - ~/.yarn/bin/yarn
npm: 6.10.2 - /usr/local/bin/npm
Browsers:
Chrome: 76.0.3809.100
Firefox: 68.0.1
Safari: 12.1.1
npmPackages:
react: ^16.9.0 => 16.9.0
react-dom: ^16.9.0 => 16.9.0
react-scripts: 3.1.1 => 3.1.1
npmGlobalPackages:
create-react-app: 2.1.3
Steps to reproduce
(Write your steps here:)
Expected behavior
Mocks are picked up by jest
Actual behavior
Mocks are not picked up
Reproducible demo
(Paste the link to an example project and exact instructions to reproduce the issue.)
To see that is works with previous react-scripts do
The text was updated successfully, but these errors were encountered: