(name: string, options: RecordReplayOptions = {})
| 182 | ) |
| 183 | |
| 184 | export const cassetteLayer = (name: string, options: RecordReplayOptions = {}): Layer.Layer<HttpClient.HttpClient> => |
| 185 | recordingLayer(name, options).pipe( |
| 186 | Layer.provide(CassetteService.fileSystem({ directory: options.directory })), |
| 187 | Layer.provide(FetchHttpClient.layer), |
| 188 | Layer.provide(NodeFileSystem.layer), |
| 189 | ) |
nothing calls this directly
no test coverage detected