(path: string)
| 496 | }); |
| 497 | |
| 498 | const readSettingsWithoutLogging = (path: string) => |
| 499 | readSettings(path).resume( |
| 500 | (name): name is Logging["name"] => name.startsWith("logging:"), |
| 501 | () => { |
| 502 | // Omit logging |
| 503 | }, |
| 504 | ); |
| 505 | |
| 506 | expect(readSettingsWithoutLogging).to(equal<(path: string) => Effected<ReadFile, Settings>>); |
| 507 | } |
nothing calls this directly
no test coverage detected