最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How does proxyquire handle second level (indirect) requires of proxies modules? - Stack Overflow

programmeradmin1浏览0评论

If we have three modules names A, B and C so module A requires B and B requires C: what would be the effect of this call?

var A = proxyquire('A', {'C': mockedModule})

Would module B get the mock or the real C module?

If we have three modules names A, B and C so module A requires B and B requires C: what would be the effect of this call?

var A = proxyquire('A', {'C': mockedModule})

Would module B get the mock or the real C module?

Share Improve this question asked May 29, 2014 at 23:45 fortranfortran 76.2k27 gold badges139 silver badges179 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Only direct dependencies will be mocked.

But you can nest proxyquire statements, so in your example you could:

const A = proxyquire('../A', {
    './B': proxyquire('../B', {
        'C': mockC
    })
});

Where the file structure is like

root
 |-- A.js
 |-- B.js
 `-- tests
       `-- A.spec.js

And import C is not local.

发布评论

评论列表(0)

  1. 暂无评论