typeorm / typescript-express-example

Example how to use Express and TypeORM with TypeScript
361 stars 100 forks source link

What is the best way to test this? #6

Closed Kogs closed 6 years ago

Kogs commented 6 years ago

I'm wondering how to write tests for this kind of express/typorm project setup.

How to mock the Repositories?

Any ideas/recommendations?

oliviergf commented 6 years ago

good question^

Kogs commented 6 years ago

It's not testable like that. What I did was writing 'business objects' that use internally TypeOrm Repositories. This BO classes then can get mocked so there is no database connection required.