( options?: TestConfigOptions<TPlugins>, )
| 233 | ); |
| 234 | |
| 235 | export const makeTestWorkspaceLayer = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 236 | options?: TestConfigOptions<TPlugins>, |
| 237 | ) => |
| 238 | Layer.effect(TestWorkspace)( |
| 239 | makeTestWorkspaceHarness(options).pipe( |
| 240 | Effect.tap(({ testDb }) => Effect.promise(() => testDb.warm())), |
| 241 | ), |
| 242 | ); |
| 243 | |
| 244 | export const makeTestExecutor = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 245 | options?: TestConfigOptions<TPlugins>, |
no test coverage detected