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

node_modules Mocks are not picked up by jest with latest react-scripts #7539

Open
tomitrescak opened this issue Aug 15, 2019 · 28 comments · May be fixed by #8257
Open

node_modules Mocks are not picked up by jest with latest react-scripts #7539

tomitrescak opened this issue Aug 15, 2019 · 28 comments · May be fixed by #8257

Comments

@tomitrescak
Copy link

tomitrescak commented Aug 15, 2019

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:)

  1. create a manual mock of any node_modules package
  2. put it to mocks directory
  3. run your test

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.)

  1. git clone https://github.com/tomitrescak/react-boilerplate -b Demo
  2. cd react-boilerplate
  3. yarn
  4. yarn test
  5. p -> 'button'
  6. error: Trans not found (not being picked up by mocks)

To see that is works with previous react-scripts do

  1. yarn add react-scripts@3.0.1
  2. yarn test
  3. You will recieve a snapshot erro which is fine
@FezVrasta
Copy link
Contributor

I can't reproduce this with 3.1.1, we have a __mocks__ folder under src/ with 2 different mocks (one of a node module and one of an internal module) and they both work

@jnak
Copy link

jnak commented Aug 16, 2019

@FezVrasta __mocks__ for node modules should be located immediately next to the node_modules directory.

https://jestjs.io/docs/en/manual-mocks#mocking-node-modules

@ianschmitz
Copy link
Contributor

This may have been caused by #7480.

@jnak
Copy link

jnak commented Aug 16, 2019

This is problematic because __mocks__ for user modules may collide with the __mocks__ for node_modules.

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.

@FezVrasta
Copy link
Contributor

@jnak even under src the mocks work just fine. I always did it that way

@jnak
Copy link

jnak commented Aug 16, 2019

@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 jest documentation) and you may be running into a __mocks__ collision.

Anyway, I don't feel strongly about it. I just wanted to let you know of this undocumented gotcha.

@tomitrescak
Copy link
Author

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.

@ultimagriever
Copy link

Honestly I think #7480 should be reverted, or at least just let us set the roots config in our package.json so we can avoid anti-patterns like this.

@tomitrescak
Copy link
Author

No pressure, but would be good to know the decision if we should move the mocks to upgrade. Thanks!

@ianschmitz
Copy link
Contributor

We may be able to specify __mocks__ living in the project root as another entry in the roots configuration. If someone has time could they try this? This may be a good solution to keep the performance benefits of #7480 and supporting the __mocks__ next to node_modules convention.

@ultimagriever
Copy link

@ianschmitz I've tried adding the project root to the roots configuration in package.json, but CRA threw an error saying that it wasn't supported and didn't run my tests at all.

@ianschmitz
Copy link
Contributor

Correct - we don't support modifying roots. What you'll have to do test this is edit the createJestConfig.js file in node_modules/react-scripts as was done here: https://github.com/facebook/create-react-app/pull/7480/files#diff-40a56a7d41499eab85303b5e977f9742.

Try something like:

{
  roots: ['<rootDir>/src', '<rootDir>/__mocks__'],
  ...
}

@KennethSundqvist
Copy link

KennethSundqvist commented Sep 12, 2019

I'm working on a PR for this to add '<rootDir>/__mocks__' to roots.

The watcher used by Jest (jest-haste-map > './lib/FSEventsWatcher.js' > walker) will throw an error if '<rootDir>/__mocks__' doesn't exist.

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?

const nodeMocksRootPath = path.join(rootDir || paths.appPath, '__mocks__');
const nodeMocksRootStats =
  fs.existsSync(nodeMocksRootPath) && fs.statSync(nodeMocksRootPath);
if (nodeMocksRootStats && nodeMocksRootStats.isDirectory()) {
  roots.push('<rootDir>/__mocks__');
}

rootDir is used in the test script and is set to the template directory. It's not used in the eject script, is paths.appPath the correct value to use then?

@brendanmc6
Copy link

brendanmc6 commented Sep 14, 2019

For those whose test's are completely broken by this:
Moving __mocks__ under ./src solved the problem for me.

@ultimagriever
Copy link

@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 node_modules, see https://jestjs.io/docs/en/manual-mocks#mocking-node-modules

@ShamansCoding
Copy link

ShamansCoding commented Sep 17, 2019

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.

@brendanmc6
Copy link

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.

@yugandhar-pathi
Copy link

Can this be fixed soon, I can't mock node_modules as per jest documentation.

kwasi added a commit to kwasi/metadata that referenced this issue Nov 4, 2019
* 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
kwasi added a commit to kwasi/metadata that referenced this issue Nov 7, 2019
* 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
k8s-ci-robot pushed a commit to kubeflow/metadata that referenced this issue Nov 12, 2019
* 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
kwasi pushed a commit to kwasi/metadata that referenced this issue Nov 12, 2019
* 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
kwasi pushed a commit to kwasi/metadata that referenced this issue Nov 13, 2019
* 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
kwasi pushed a commit to kwasi/metadata that referenced this issue Nov 13, 2019
* 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
k8s-ci-robot pushed a commit to kubeflow/metadata that referenced this issue Nov 14, 2019
…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
philip-swrve added a commit to Swrve/create-react-app that referenced this issue Dec 11, 2019
@jameschao
Copy link

Hi @KennethSundqvist, how's it going with your proposed fix?

@Wgil
Copy link

Wgil commented Feb 27, 2020

@brendanmc6 Thanks! spent about three hours to figure this out.

louise-davies added a commit to ral-facilities/scigateway that referenced this issue May 21, 2020
@lewisloofis
Copy link

Is there any progress with the PR for this issue fix? This feature is quite helpful for my testing

@StarryFire
Copy link

StarryFire commented Jul 14, 2020

still no fix? :/ This is also not working on React Native 0.62

@gforceg
Copy link

gforceg commented Sep 11, 2020

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.

@louy2
Copy link

louy2 commented Oct 17, 2020

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?

@ken-nah
Copy link

ken-nah commented Dec 22, 2020

It's been more than half a year, should we expect the patch to fix this soon?

@tejasjadhav
Copy link

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 electron folder) of my craco.config.js in my project root,

module.exports = {
  jest: {
    configure: {
      roots: [
        '<rootDir>/electron',
      ],
      testMatch: [
        '<rootDir>/electron/**/__tests__/**/*.{js,jsx,ts,tsx}',
        '<rootDir>/electron/**/*.{spec,test}.{js,jsx,ts,tsx}',
      ],
    },
  },
};

@cjsilva-umich
Copy link

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.

@felipefreitag
Copy link

I've gone and used patch-package to fix this on my repos:

Step 1: create the __mocks__ dir

├── src
├── mocks
├── node_modules
├── package.json

Step 2: patch react-scripts

// node_modules/react-scripts/scripts/utils/createJestConfig.js
   const config = {
-    roots: ['<rootDir>/src'],
+    roots: ['<rootDir>/src', '<rootDir>/__mocks__'],

Warning: This breaks jest if the <rootDir>/__mocks__ dir doesn't exist.

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