(cwd: string, ...args: string[])
| 6962 | it('should index files inside git submodules (issue #147)', async () => { |
| 6963 | const { execFileSync } = await import('child_process'); |
| 6964 | const git = (cwd: string, ...args: string[]) => |
| 6965 | execFileSync('git', args, { cwd, stdio: 'pipe' }); |
| 6966 | |
| 6967 | // Build a separate "library" repo to use as a submodule source. |
| 6968 | const libDir = path.join(tempDir, '_lib'); |
no outgoing calls
no test coverage detected