skip to Main Content

Redis – How to jest mock nestjs imports?

I want to write a unit test for my nestjs 'Course' repository service (a service that has dependencies on Mongoose Model and Redis). courses.repository.ts: import { Injectable, HttpException, NotFoundException } from "@nestjs/common"; import { InjectModel } from "@nestjs/mongoose" import {…

VIEW QUESTION
Back To Top
Search