AkifumiSato / esbuild-jest-transform

14 stars 9 forks source link

don`t support jest.mock #11

Open breitembach opened 1 year ago

breitembach commented 1 year ago

i am getting the following error

httpMock.mockClear is not a function

and

httpMock.mockImplementation

esbuild is not working properly with jest

AkifumiSato commented 1 year ago

This issue should be reported to esbuild or jest.

alenaksu commented 10 months ago

Jest mocks need to be hoisted to work, using just esbuild won't work. So esbuild-jest-transform probably needs to add an extra step that involves the use of babel-jest to achieve that.