Proxyquire shows error “Cannot find module”Find object by id in an array of JavaScript objectsProxyquire can't find moduleMock an anonymous function using proxyquire with Node.js?Proxyquire calling original file instead of stubStrategy for using proxyquire to mock requires across multiple testing files (NodeJS)Unit test a private method that uses request, pipe and stream using mocksRequire not behaving as expectedWhat Path is the Babel Plugin module-alias Actually Using?Proxyquire wont find models in controllerHow to enable babel-plugin-rewire in Meteor

Is it possible to breed neanderthals through selective breeding?

What could make large expeditions ineffective for exploring territory full of dangers and valuable resources?

We get more abuse than anyone else

Why can't I hear fret buzz through the amp?

May I use a railway velocipede on used British railways?

Why does a tetrahedral molecule like methane have a dipole moment of zero?

How slow can a car engine run?

What did Jeremy Hunt mean by "slipped" to miss a vote?

What was the difference between a Games Console and a Home Computer?

Drawing a circle with nodes shift with Tikz

Locked-up DOS computer beeped on keypress. What mechanism caused that?

Why is the Intel 8086 CPU called a 16-bit CPU?

Term “console” in game consoles

How would you say "Sorry, that was a mistake on my part"?

"This used to be my phone number"

Did Hitler say this quote about homeschooling?

What were the problems on the Apollo 11 lunar module?

When can a polynomial be written as a polynomial function of another polynomial?

How to interpret a promising preprint that was never published?

Arithmetics in LuaLaTeX

Random piece of plastic

Is it possible to have a career in SciComp without contributing to arms research?

Wordplay addition paradox

Round command argument before using



Proxyquire shows error “Cannot find module”


Find object by id in an array of JavaScript objectsProxyquire can't find moduleMock an anonymous function using proxyquire with Node.js?Proxyquire calling original file instead of stubStrategy for using proxyquire to mock requires across multiple testing files (NodeJS)Unit test a private method that uses request, pipe and stream using mocksRequire not behaving as expectedWhat Path is the Babel Plugin module-alias Actually Using?Proxyquire wont find models in controllerHow to enable babel-plugin-rewire in Meteor






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm trying to use proxyquire to replace a private function for testing in my Meteor app.



Meteor 1.6.1



meteortesting:mocha@1.1.2



In my parentFunction.js:



import some function from 'anotherFile';

function childFunction()
...
return someValue;


export default function parentFunction()
return childFunction()



In my test file:



const proxyquire = require('proxyquire');

if (Meteor.isServer) {
...

describe('parentFunction', () =>
it('uses the mocked child function', () =>
const testThing = proxyquire('./parentFunction',
'childFunction': () => ( 'name': 'bob' ),
);
);



parentFunction.js is in the same folder as my test file, and just to double check the path, I made sure this works:



import parentFunction from './parentFunction';


But when I run the test, I'm seeing an error:



Error: Cannot find module './parentFunction.js'


What am I doing wrong? I've tried an absolute path, that didn't work. And as far as I can see from the documentation a relative path in the file where proxiquire is required, should be fine.



Thanks for any help!










share|improve this question




























    1















    I'm trying to use proxyquire to replace a private function for testing in my Meteor app.



    Meteor 1.6.1



    meteortesting:mocha@1.1.2



    In my parentFunction.js:



    import some function from 'anotherFile';

    function childFunction()
    ...
    return someValue;


    export default function parentFunction()
    return childFunction()



    In my test file:



    const proxyquire = require('proxyquire');

    if (Meteor.isServer) {
    ...

    describe('parentFunction', () =>
    it('uses the mocked child function', () =>
    const testThing = proxyquire('./parentFunction',
    'childFunction': () => ( 'name': 'bob' ),
    );
    );



    parentFunction.js is in the same folder as my test file, and just to double check the path, I made sure this works:



    import parentFunction from './parentFunction';


    But when I run the test, I'm seeing an error:



    Error: Cannot find module './parentFunction.js'


    What am I doing wrong? I've tried an absolute path, that didn't work. And as far as I can see from the documentation a relative path in the file where proxiquire is required, should be fine.



    Thanks for any help!










    share|improve this question
























      1












      1








      1








      I'm trying to use proxyquire to replace a private function for testing in my Meteor app.



      Meteor 1.6.1



      meteortesting:mocha@1.1.2



      In my parentFunction.js:



      import some function from 'anotherFile';

      function childFunction()
      ...
      return someValue;


      export default function parentFunction()
      return childFunction()



      In my test file:



      const proxyquire = require('proxyquire');

      if (Meteor.isServer) {
      ...

      describe('parentFunction', () =>
      it('uses the mocked child function', () =>
      const testThing = proxyquire('./parentFunction',
      'childFunction': () => ( 'name': 'bob' ),
      );
      );



      parentFunction.js is in the same folder as my test file, and just to double check the path, I made sure this works:



      import parentFunction from './parentFunction';


      But when I run the test, I'm seeing an error:



      Error: Cannot find module './parentFunction.js'


      What am I doing wrong? I've tried an absolute path, that didn't work. And as far as I can see from the documentation a relative path in the file where proxiquire is required, should be fine.



      Thanks for any help!










      share|improve this question














      I'm trying to use proxyquire to replace a private function for testing in my Meteor app.



      Meteor 1.6.1



      meteortesting:mocha@1.1.2



      In my parentFunction.js:



      import some function from 'anotherFile';

      function childFunction()
      ...
      return someValue;


      export default function parentFunction()
      return childFunction()



      In my test file:



      const proxyquire = require('proxyquire');

      if (Meteor.isServer) {
      ...

      describe('parentFunction', () =>
      it('uses the mocked child function', () =>
      const testThing = proxyquire('./parentFunction',
      'childFunction': () => ( 'name': 'bob' ),
      );
      );



      parentFunction.js is in the same folder as my test file, and just to double check the path, I made sure this works:



      import parentFunction from './parentFunction';


      But when I run the test, I'm seeing an error:



      Error: Cannot find module './parentFunction.js'


      What am I doing wrong? I've tried an absolute path, that didn't work. And as far as I can see from the documentation a relative path in the file where proxiquire is required, should be fine.



      Thanks for any help!







      javascript testing meteor mocha proxyquire






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 26 at 10:03









      Little BrainLittle Brain

      5524 silver badges14 bronze badges




      5524 silver badges14 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55354356%2fproxyquire-shows-error-cannot-find-module%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55354356%2fproxyquire-shows-error-cannot-find-module%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript