( provider: ConfigProvider.ConfigProvider, path: ConfigProvider.Path, expected: ConfigProvider.Node | undefined )
| 3 | import { ConfigProvider, Effect, FileSystem, Layer, Path, PlatformError, Result } from "effect" |
| 4 | |
| 5 | const notFound = (method: string): PlatformError.PlatformError => |
| 6 | PlatformError.systemError({ |
| 7 | module: "FileSystem", |
| 8 | _tag: "NotFound", |
| 9 | method |
| 10 | }) |
| 11 | |
| 12 | async function assertSuccess( |
| 13 | provider: ConfigProvider.ConfigProvider, |
| 14 | path: ConfigProvider.Path, |
| 15 | expected: ConfigProvider.Node |
no test coverage detected
searching dependent graphs…