(fixtureSource: string)
| 48 | } |
| 49 | |
| 50 | const loadFixtureMetadata = async (fixtureSource: string) => { |
| 51 | const fixtureJsonPath = join(fixtureSource, 'fixture.json'); |
| 52 | try { |
| 53 | const content = await readFile(fixtureJsonPath, 'utf-8'); |
| 54 | return JSON.parse(content) as FixtureMetadata; |
| 55 | } catch { |
| 56 | return null; |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | const loadVercelJson = async (projectSource: string) => { |
| 61 | const vercelJsonPath = join(projectSource, 'vercel.json'); |
no test coverage detected