我怎样才能在游戏中模拟动态加载的虚拟模块?

时间:2016-11-18 16:59:45

标签: javascript unit-testing mocking virtual jestjs

我在Jest单元测试中有一个虚拟javascript文件,路径为'/widgets/1.0.js'。我嘲笑fs模块来模拟它的存在。

现在我想动态加载它来调用方法'foo()'。我认为这将是使用虚拟模拟的情况:

index.test.js
    jest.mock('/widgets/1.0.js', () => {foo: jest.fn(() => {console.log('foo!')})}, {virtual: true});

调用mock的代码:

index.js
    let module = require('/widgets/1.0.js');
    module.foo();

当我运行测试时:

Cannot find module '/widgets/1.0.js' from 'index.js'

      at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:151:17)
      at processWidgets (src/index.js:115:2418)
      at Object.<anonymous> (src/__tests__/index.test.js:99:73)

我认为这应该是可能的。有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

模块路径似乎有问题。这有效:

index.test.js
jest.mock('1.0', () => {
  return {
    foo: () => {return 42;}
  }
}, {virtual: true});

index.js
const module = require('1.0');
   let retval = module.foo();
   console.log('retval: ', retval);

如果我使用'/widgets/1.0'则没有。希望它有所帮助..