How do you create manual mock for your libs, which are used by your apps?
I'm trying to follow scope mocking in jest documentation but have no luck.
Example:
my-workspace
├── __mocks__
│ └── @my-workspace/my-lib.ts
├── apps
│ ├── my-app
│ └── index.ts
├── libs
│ ├── my-lib
│ └── index.ts
...