Giter Site home page Giter Site logo

Comments (5)

mhjam avatar mhjam commented on July 28, 2024 4

My current workaround is this:

	it('should mock a primitive', () => {
		const quuxGetter = jest.fn();
		const foo = mock<Foo>(); // mockDeep does not work!
		Object.defineProperty(foo.baz, 'quux', {
			get: quuxGetter
		});
		quuxGetter.mockReturnValue(false);

		expect(foo.baz.quux).toBe(false);
		expect(quuxGetter).toHaveBeenCalledTimes(1);
	});

If you do not need spying capabilities and just want quux to have a fixed value, you can do

	it('should mock a primitive', () => {
		const foo = mock<Foo>(); // mockDeep does not work!
		Object.defineProperty(foo.baz, 'quux', {
			get: () => false
		});

		expect(foo.baz.quux).toBe(false);
	});

But this seems to be more complicated then necessary. It should be possible to write

	it('should mock a primitive', () => {
		const foo = mock<Foo>();
		foo.baz.quux = false;

		expect(foo.baz.quux).toBe(false);
	});

And actually, this does work (even with mockDeep), but not for falsy values like in the example. I believe this is due to line 86 in Mock.ts, which reads
if (!obj[property]) {
but should rather be
if (!(property in obj)) {

from jest-mock-extended.

maddin1502 avatar maddin1502 commented on July 28, 2024 2

this is due to line 86 in Mock.ts, which reads
if (!obj[property]) {
but should rather be
if (!(property in obj)) {

I tested this solution and it works great. Why is this fix not committed yet?

from jest-mock-extended.

marchaos avatar marchaos commented on July 28, 2024 1

I'll take a look at this, but suspect that it will not work as you have specified there given how jest works and how I've implemented deep mocks.

It may require something like :

  mock<Foo>({
    baz: {
        quux: primitiveMock().mockReturnValueOnce(false)
   }
)

or

const foo = mock<Foo>()

// modifidy mock return value for quux
primitiveMock(foo.baz.quux).mockReturnValueOnce(false)

from jest-mock-extended.

perfectmak avatar perfectmak commented on July 28, 2024

Is there any update on this? It would really be useful to the current project I'm testing.

from jest-mock-extended.

marchaos avatar marchaos commented on July 28, 2024

unfortunately since Jest does not support this, the only way to add this is to do as above. PRs welcome

from jest-mock-extended.

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.