jest-class-mock
v1.0.3
Published
Easy mock creation with Jest for ES6 class/objects
Downloads
7
Readme
jest-class-mock
Mock any class in a snap for your Jest tests !
Installation
pnpm i jest-class-mocknpm i jest-class-mockyarn add jest-class-mockUsage
import { createMock } from 'jest-class-mock'
class MyService {
constructor(private otherService: OtherService) {}
doSomeStuff() {
// Doing a lot of complex stuff
}
}
const myServiceMock = createMock(MyService)
myServiceMock.doSomeStuff // That method is now an instance of jest.fn()