Mocking a Subset of Service Methods in Effect Typescript
Suppose I have an Effect.Service which returns an object with several methods, when I go to mock this service, is there a way to tell Effect that I'm purposefully only mocking a subset so that it doesn't throw the
Property 'someMethod' is missing in type ? Or is the recommended practice to just mock all methods and throw a simple early return on the ones without a real mock implementaiton?