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