Results 5 comments of Ly Tran

I've just gave to this repo 2 stars! I was using Sequelize, Bookshelf and TypeORM but MikroORM look very impressive to me compare to those libs!

@searls How about if we extends td.explain to support expectedArgs? Something like this: ```js const increment = td.func(); increment(1); increment(2); const explanation = td.explain(increment(2)); /* { ... calls: [ {...

@robwheatley Could you post your replication code to somewhere like https://codesandbox.io/?

@robwheatley https://reactjs.org/docs/react-api.html#reactmemo >React.memo only checks for prop changes. If your function component wrapped in React.memo has a useState or useContext Hook in its implementation, it will still rerender when state...

This is how I'm testing with `jest` and `testdouble`: ```js import { EntityManager } from "typeorm"; import { InjectManager } from "typeorm-typedi-extensions"; import Product from "./entity/Product"; class ProductResolver { constructor(...