(path: string)
| 1033 | ); |
| 1034 | |
| 1035 | const processFile2 = (path: string) => |
| 1036 | readFile(path) |
| 1037 | .andThen((content) => parseContent(content)) |
| 1038 | .catchAll((error, message) => |
| 1039 | logger.error(`[${error}Error] Error processing ${path}:`, message).as(null), |
| 1040 | ); |
| 1041 | |
| 1042 | expect(processFile2).to( |
| 1043 | equal< |
nothing calls this directly
no test coverage detected