-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Closed
Labels
Description
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
}protoEvangelion