(path: string)
| 1013 | }); |
| 1014 | |
| 1015 | const processFile1 = (path: string) => |
| 1016 | effected(function* () { |
| 1017 | const content = yield* readFile(path); |
| 1018 | return yield* parseContent(content); |
| 1019 | }).catchAll(function* (error, message) { |
| 1020 | yield* logger.error(`[${error}Error] Error processing ${path}:`, message); |
| 1021 | return null; |
| 1022 | }); |
| 1023 | |
| 1024 | expect(processFile1).to( |
| 1025 | equal< |
nothing calls this directly
no test coverage detected