| 14 | |
| 15 | // this is valid because depends on SampleService1 and is defined in the dependencies array |
| 16 | export class ValidService extends Effect.Service<ValidService>()("ValidService", { |
| 17 | effect: Effect.gen(function*() { |
| 18 | const sampleService1 = yield* SampleService1 |
| 19 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected