( options?: TestConfigOptions<TPlugins>, )
| 222 | ); |
| 223 | |
| 224 | export const makeTestExecutor = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 225 | options?: TestConfigOptions<TPlugins>, |
| 226 | ) => makeTestWorkspaceHarness(options).pipe(Effect.map(({ executor }) => executor)); |
| 227 | |
| 228 | /** Built-in in-memory writable credential provider, contributed as a plugin |
| 229 | * so tests always have a default writable store for inline connection values. */ |