( options?: TestConfigOptions<TPlugins>, )
| 226 | ); |
| 227 | |
| 228 | export const makeTestWorkspaceLayer = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 229 | options?: TestConfigOptions<TPlugins>, |
| 230 | ) => |
| 231 | Layer.effect(TestWorkspace)( |
| 232 | makeTestWorkspaceHarness(options).pipe( |
| 233 | Effect.tap(({ testDb }) => Effect.promise(() => testDb.warm())), |
| 234 | ), |
| 235 | ); |
| 236 | |
| 237 | export const makeTestExecutor = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 238 | options?: TestConfigOptions<TPlugins>, |
no test coverage detected