Giter Site home page Giter Site logo

Comments (4)

theKashey avatar theKashey commented on June 1, 2024

This is the second time such issue appear (see #46) and it's expected to work. But it will be not try to "resolve" a file name at all. (consider it as a bug)
So in order to mock a "virtual file" you'll need to mocks it in a way you will load it.

We know what node wants - Error: Cannot find module '/path/to/current/working/dir/lib/utils/data-util'
Let's try to double check what rewiremock does

rewiremock(`${global.PATH}/lib/utils/data-util`).with({
  DataStore: { }
})
.toBeUsed(); // 👈

rewiremock.enable();
rewiremock.disable(); // 👈

⬇️
XXX was set to be used, but was unused

from rewiremock.

Saif-Shines avatar Saif-Shines commented on June 1, 2024

It appears like rewiremock doesn't print anything close to,

XXX was set to be used, but was unused

It might have been used indeed by rewiremock.

I still see the same error,

Error: Cannot find module '/path/to/current/working/dir/lib/utils/data-util'

Following is how my run.test.js appears like

const rewiremock = require('rewiremock').default;

describe('Micky Mouse', function(){
global.PATH = process.cwd();

it('disney world', function(){
// Around ~15 rewiremock'd modules
 rewiremock(`${global.PATH}/lib/utils/data-util`)
      .with({
        DataStore: {}
      })
      .toBeUsed();
    rewiremock.enable();
    const run = require('../../lib/cli/run');
    rewiremock.disable();
})

 after(function () {
    rewiremock.disable();
  });

})

Mentioned some code surrounding it, just incase bug lives outside our current focus.

I simply ran by

mocha run.test.js

from rewiremock.

theKashey avatar theKashey commented on June 1, 2024

There is no const run = require('../../lib/cli/run'); in my case. It was just enable and just disable.

from rewiremock.

Alex0007 avatar Alex0007 commented on June 1, 2024

@theKashey i can confirm that mocking of non-existent modules is not working (Node.js)

rewiremock('puppeteer').by('../versions/puppeteer-15/node_modules/puppeteer-15');
Error: Cannot find module 'puppeteer'
Require stack:
- /Users/alex/Development/projects/test-project/build/rewiremock.js

Putting placeholder empty package to node_modules resolves problem, but still unexpected behaviour

from rewiremock.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.