( serverPath: ServerPath, run: (input: ProjectFixture) => Effect.Effect<A, E, TestScope>, )
| 242 | } |
| 243 | |
| 244 | function withStandardProject<A, E>( |
| 245 | serverPath: ServerPath, |
| 246 | run: (input: ProjectFixture) => Effect.Effect<A, E, TestScope>, |
| 247 | ) { |
| 248 | return withProject(serverPath, { setup: writeStandardFiles }, run) |
| 249 | } |
| 250 | |
| 251 | function withFakeLlm<A, E>(serverPath: ServerPath, run: (input: LlmProjectFixture) => Effect.Effect<A, E, TestScope>) { |
| 252 | return Effect.gen(function* () { |
no test coverage detected