Giter VIP home page Giter VIP logo

Comments (4)

jmcdo29 avatar jmcdo29 commented on July 22, 2024

@warreee I never said anything about save as a method. I suggested not using new this.model() because that's what becomes difficult to mock. When you create a new instance of the thing you're mocking, it gets messy. It's the difference of using an Active Record approach (where each instance of a model or entity has its own Data Manipulation Methods) vs a Data Mapper approach (where you use a central service and pass entities and models to it so it can talk with the database).

from testing-nestjs.

warreee avatar warreee commented on July 22, 2024

Alright, thanks for the clarification.
However, do you have an idea of why I can't do:
jest.spyOn(model, 'save').mockResolvedValueOnce({...});
But I can do:
jest.spyOn(model, 'create').mockResolvedValueOnce({...});

The save method seems not to be able to be spied on, however as in your example tests for create, update, findOne ... this works perfectly fine?
I tried this also in your mongo example so that I was sure it was not my project setup messing with this...

from testing-nestjs.

jmcdo29 avatar jmcdo29 commented on July 22, 2024

Yes, because when you do new this.model() (which creates the Document instance that has the save method), you no longer are working with this.model, but the returned object of that. If you look at the types, Model has no method called save.

from testing-nestjs.

warreee avatar warreee commented on July 22, 2024

I see thanks!

from testing-nestjs.

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.