()
| 123 | }); |
| 124 | |
| 125 | const gitInit = () => { |
| 126 | execFileSync('git', ['init', '-q'], { cwd: dir }); |
| 127 | execFileSync('git', ['add', '-A'], { cwd: dir }); |
| 128 | execFileSync('git', ['-c', 'user.email=a@b.c', '-c', 'user.name=t', 'commit', '-qm', 'x'], { cwd: dir }); |
| 129 | }; |
| 130 | |
| 131 | it('indexes a .gitignored source dir when include opts it in (git path) — the core fix', () => { |
| 132 | mk('app/main.ts'); |
no outgoing calls
no test coverage detected