(name: string, options: RecorderOptions = {})
| 306 | * duplicate the transport URL. |
| 307 | */ |
| 308 | export const socket = (name: string, options: RecorderOptions = {}): Layer.Layer<Socket.Socket, never, Socket.Socket> => |
| 309 | provideCassette(recordingLayer(name, { url: "" }, { ...options, compareClientMessagesAsJson: true }), options) |
| 310 | |
| 311 | /** @internal */ |
| 312 | export const socketLayer = ( |
nothing calls this directly
no test coverage detected