DEV Community

Discussion on: Building a REST api using fastify and TypeORM

Collapse
 
carlbarrdahl profile image
Carl Barrdahl

Thank you Bhuvin!

That is a good question and unfortunately I can't remember exactly. I imagine it might be to override the methods in typeorm:

typeorm.createConnection = jest.fn().mockReturnValue({
  getRepository: model => dbMock[model.name]
})

typeorm.getConnectionOptions = jest.fn().mockReturnValue({})