(entrypoint?: string)
| 21 | const itWithAISDK = testEffect(Layer.mergeAll(PluginTestLayer, AppNodeBuilder.build(AISDK.node))) |
| 22 | |
| 23 | function npmEntrypoint(entrypoint?: string) { |
| 24 | return Npm.Service.of({ |
| 25 | add: () => Effect.succeed({ directory: "", entrypoint }), |
| 26 | install: () => Effect.void, |
| 27 | which: () => Effect.succeed(undefined), |
| 28 | }) |
| 29 | } |
| 30 | |
| 31 | const addPlugin = Effect.fn(function* (npm?: Npm.Interface) { |
| 32 | const plugin = yield* PluginV2.Service |
no outgoing calls
no test coverage detected