(path)
| 942 | * const content = yield* fs.readFileString("any-file.txt") |
| 943 | * return content |
| 944 | * }) |
| 945 | * |
| 946 | * // Provide the test layer |
| 947 | * const testProgram = Effect.provide(program, testLayer) |
| 948 | * Effect.runSync(testProgram) // => "mocked content" |
| 949 | * ``` |