( options?: TestConfigOptions<TPlugins>, )
| 211 | ); |
| 212 | |
| 213 | export const makeTestWorkspaceLayer = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 214 | options?: TestConfigOptions<TPlugins>, |
| 215 | ) => |
| 216 | Layer.effect(TestWorkspace)( |
| 217 | makeTestWorkspaceHarness(options).pipe( |
| 218 | Effect.tap(({ testDb }) => Effect.promise(() => testDb.warm())), |
| 219 | ), |
| 220 | ); |
| 221 | |
| 222 | export const makeTestExecutor = <const TPlugins extends readonly AnyPlugin[] = readonly []>( |
| 223 | options?: TestConfigOptions<TPlugins>, |
no test coverage detected