( accountId: string, organizationId: string, organizationName: string, )
| 17 | // leaving `SelfHostDb` as the only requirement (the production path provides the |
| 18 | // same seams via `SelfHostExecutionStackLayer`). |
| 19 | const createScopedExecutor = ( |
| 20 | accountId: string, |
| 21 | organizationId: string, |
| 22 | organizationName: string, |
| 23 | ) => |
| 24 | makeScopedExecutor<SelfHostPlugins>(accountId, organizationId, organizationName).pipe( |
| 25 | Effect.provide(SelfHostScopedExecutorSeams), |
| 26 | ); |
| 27 | |
| 28 | const dataDir = mkdtempSync(join(tmpdir(), "eh-src-")); |
| 29 | process.env.EXECUTOR_DATA_DIR = dataDir; |
no test coverage detected