Giter Site home page Giter Site logo

Comments (5)

dennybaa avatar dennybaa commented on May 18, 2024 1

@theKashey Thank you, for clarifications. Keep up, awesome library!

from rewiremock.

theKashey avatar theKashey commented on May 18, 2024

JFYI - class IS a function.
Anyway - rewiremock does not mock functions or classes - it mocks ‘names’.
Also, there is no way to mock instances, but not mock class itself, as long you have to override constructor to produce different instances.

‘’’js
Rewiremock(“file”).withDefault(MyMockedFoo);
‘’’

Anyway could you explain what are you actually trying to do.

from rewiremock.

dennybaa avatar dennybaa commented on May 18, 2024

Also, there is no way to mock instances, but not mock class itself, as long you have to override constructor to produce different instances.

@theKashey Thank you, I understand. My question referred to instances solely... Basically mocking of instances is not required.
But it might be cool to have rewiremock detect a class (constructor) and hijack it with a stub factory function, what do you think? So that make the bellow possible? Is it an overkill?

rewiremock("./module-exporting-a-class")
  .es6()
  .callThrough()
  .with({
    overridded_method: () => 'stub'
  })
   
rewiremock.enable()

import MockedKlass from './module-exporting-a-class'
let mockedInstance = MockedKlass()
console.log(mockedInstance.overridded_method())

rewiremock.disable()

This could be more intuitive when using es6 classes. Otherwise the situation is like you say, rewiremock mocks names and expects them to be functions.

from rewiremock.

dennybaa avatar dennybaa commented on May 18, 2024

I'm looking into testdouble also, they seem to have for this need https://github.com/testdouble/testdouble.js#tdconstructor

from rewiremock.

theKashey avatar theKashey commented on May 18, 2024

This is absolutely unrelated things.
TD produces stubs, rewiremock rewires your modules and could replace exports of some module by the something you will provide.

Rewiremock is only about rewiring/mocking dependencies. To create fakes/doubles you have to use td or sinon.
Also keep in mind - td has build in support for mocking (td.replace).

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.