(method: string, path: string)
| 762 | }) |
| 763 | |
| 764 | const notFound = (method: string, path: string) => |
| 765 | systemError({ |
| 766 | module: "FileSystem", |
| 767 | method, |
| 768 | _tag: "NotFound", |
| 769 | description: "No such file or directory", |
| 770 | pathOrDescriptor: path |
| 771 | }) |
| 772 | |
| 773 | /** |
| 774 | * Creates a stub `FileSystem` implementation for tests. |
no test coverage detected