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