(source?: string | FileTree)
| 49 | }; |
| 50 | |
| 51 | export const createFixture = async (source?: string | FileTree) => { |
| 52 | const fixture = await createFixtureBase(source); |
| 53 | const lazycommit = createLazycommit(fixture); |
| 54 | |
| 55 | return { |
| 56 | fixture, |
| 57 | lazycommit, |
| 58 | }; |
| 59 | }; |
| 60 | |
| 61 | export const files = Object.freeze({ |
| 62 | '.lazycommit': `GROQ_API_KEY=${process.env.GROQ_API_KEY}`, |
no test coverage detected