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