( options: Omit<CreateAppFixtureOptions, 'framework'>, )
| 198 | } |
| 199 | |
| 200 | export async function createReactAppFixture( |
| 201 | options: Omit<CreateAppFixtureOptions, 'framework'>, |
| 202 | ): Promise<E2EApp> { |
| 203 | return createAppFixture({ |
| 204 | framework: 'react', |
| 205 | ...options, |
| 206 | }) |
| 207 | } |
| 208 | |
| 209 | function getPackageManagerCommandForScript( |
| 210 | packageManager: 'pnpm' | 'npm' | 'yarn' | 'bun' | 'deno', |
no test coverage detected