( options?: TestConfigOptions<TPlugins>, )
| 235 | ); |
| 236 | |
| 237 | export const makeTestExecutor = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 238 | options?: TestConfigOptions<TPlugins>, |
| 239 | ) => makeTestWorkspaceHarness(options).pipe(Effect.map(({ executor }) => executor)); |
| 240 | |
| 241 | /** Built-in in-memory writable credential provider, contributed as a plugin |
| 242 | * so tests always have a default writable store for inline connection values. */ |