-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Dynamic require in yargs don't work in jest's environment #3419
Comments
Can you let us know what |
@tmcw ping. |
Sorry for the delay, will get a minimal test case this week. |
Closing, as this doesn't seem to affect more folks. I'll reopen if it still happens and you're still interested in providing a repro :) |
Hi, I have similar problem, have created minimal example accessible here:
Thanks in advance for reply |
@krutijan1 Looks like something does |
Can confirm in test project I posted it works! But introduced in my real project (jest: ^21.3.0-beta.4) still same issue. Wiped out npm_modules, cleared cache. Any advice how could I find out what is going on? What could have impact on this behaviour?
My transpiled code from babel does not show any usage of .parent call (but it is a build from babel cli, test are run by jest on non transpiled code), so maybe this behaviour is caused by some node_module introduced in dependencies? |
It can be in a dependency, yes. That said, module.parent is implemented in that beta version, so there's some other issue there. Can you create a new repro? |
Seeing this too when trying to use le_node which uses codependency to optionally require different |
|
Also having this problem with |
Can somebody create a reproducible example? The example posted previously (https://github.com/krutijan1/jest_import_bug) is fixed on Jest master (install EDIT: Wizcorp/codependency#14 (comment) is also fixed |
|
Do you have a reproduction? |
I ran into the same issue while exercising this code kata. Here is how to reproduce the bug: git clone https://github.com/iilei/mars-rover-kata.git
cd mars-rover-kata
git checkout tags/v0.0.1 -b jest_issue_3419
npm install
npm run tdd src/index.spec.js Interestingly, it doesn't occur when running I am guessing it might be a side effect of |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Reporting a bug
Using
What is the current behavior?
Tests fail with
tested-module.test.js
tested-module.js
What is the expected behavior?
Tests would be able to load and use the yargs module. The failed line is this dynamic require in yargs
Please provide your exact Jest configuration and mention your Jest, node, yarn/npm version and operating system.
Current jest config is:
The text was updated successfully, but these errors were encountered: