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

Dynamic require in yargs don't work in jest's environment #3419

Closed
tmcw opened this issue Apr 29, 2017 · 16 comments
Closed

Dynamic require in yargs don't work in jest's environment #3419

tmcw opened this issue Apr 29, 2017 · 16 comments

Comments

@tmcw
Copy link

tmcw commented Apr 29, 2017

Reporting a bug

Using

What is the current behavior?

Tests fail with

    TypeError: require(...) is not a function
        at Object.self.help (/Users/tmcw/src/zeroarg/node_modules/yargs/lib/usage.js:155:30)
        at Object.self.showHelp (/Users/tmcw/src/zeroarg/node_modules/yargs/lib/usage.js:381:15)
        at Object.Yargs.self.showHelp (/Users/tmcw/src/zeroarg/node_modules/yargs/yargs.js:712:11)
        at /Users/tmcw/src/zeroarg/node_modules/yargs/yargs.js:1046:18
        at Array.forEach (native)
        at Object.Yargs.self._parseArgs (/Users/tmcw/src/zeroarg/node_modules/yargs/yargs.js:1041:27)
        at Object.Yargs.self.parse (/Users/tmcw/src/zeroarg/node_modules/yargs/yargs.js:533:23)

tested-module.test.js

jest.dontMock('yargs');
var path = require('path');
var testedModule = require('./tested-module');

test('empty', () => {
  testedModule( '--help')
});

tested-module.js

var yargs = require('yargs');

function testedModule(input) {
  yargs.help();
  yargs.usage(input);
}

module.exports = testedModule;

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.

  • yarn: 0.22.0
  • jest: 19.0.2
  • macOS
  • node 7.8.0

Current jest config is:

"jest": {
    "automock": false
  }
@cpojer
Copy link
Member

cpojer commented May 2, 2017

Can you let us know what console.log(require.resolve('cliui')) in your test outputs? This seems like an odd test. Do you have a repository that we can install and see this error?

@thymikee
Copy link
Collaborator

@tmcw ping.

@tmcw
Copy link
Author

tmcw commented Jun 19, 2017

Sorry for the delay, will get a minimal test case this week.

@thymikee
Copy link
Collaborator

thymikee commented Oct 5, 2017

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

@thymikee thymikee closed this as completed Oct 5, 2017
@krutijan1
Copy link

Hi, I have similar problem, have created minimal example accessible here:
jest_import_bug
I would like to use jest for unit and also integration testing in my node.js project, but cannot get this going. When running in jest environment (npm test), library codependency inside node_modules is trying to require module {exports: , filename: 'mock.js', id: 'mockParent'}, it looks like some mocked object created by jest? This object does not have .require function, but jest should have automocking disabled by default and I also have turned it off in package.json, am I missing something here?

      TypeError: baseMod.require is not a function

      at realRequire (node_modules/codependency/index.js:76:18)
      at requirePeer (node_modules/codependency/index.js:284:10)
      at Object.<anonymous> (node_modules/le_node/lib/logger.js:948:15)
      at Object.<anonymous> (logger.js:3:177)
      at Object.<anonymous> (require.test.js:1:117)
          at Generator.next (<anonymous>)
          at new Promise (<anonymous>)
          at Generator.next (<anonymous>)
          at <anonymous>
      at process._tickCallback (internal/process/next_tick.js:188:7)

Thanks in advance for reply

@SimenB
Copy link
Member

SimenB commented Oct 26, 2017

@krutijan1 Looks like something does module.parent in your code. That should be fixed in #4614, can you install jest@test an verify?

@krutijan1
Copy link

krutijan1 commented Oct 27, 2017

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?

Looks like something does module.parent in your code.

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?

@SimenB
Copy link
Member

SimenB commented Oct 29, 2017

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?

@mericsson
Copy link

Seeing this too when trying to use le_node which uses codependency to optionally require different winston versions. Will update if I get a reproducible sample I can share.

@aledalgrande
Copy link
Contributor

aledalgrande commented Nov 29, 2017

le_node creates this situation for us too.

@zol
Copy link

zol commented Nov 30, 2017

Also having this problem with le_node

@SimenB
Copy link
Member

SimenB commented Dec 17, 2017

Can somebody create a reproducible example? The example posted previously (https://github.com/krutijan1/jest_import_bug) is fixed on Jest master (install jest@test to see).

EDIT: Wizcorp/codependency#14 (comment) is also fixed

@steve-westwood
Copy link

le_node presents this problem for me too

@SimenB
Copy link
Member

SimenB commented Mar 28, 2018

Do you have a reproduction?

@iilei
Copy link

iilei commented May 26, 2018

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 npm run test.

I am guessing it might be a side effect of jest --watch 🤔

@github-actions
Copy link

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.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 12, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

10 participants