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