()
| 107 | }); |
| 108 | |
| 109 | const gitInit = () => { |
| 110 | execFileSync('git', ['init', '-q'], { cwd: dir }); |
| 111 | execFileSync('git', ['add', '-A'], { cwd: dir }); |
| 112 | execFileSync('git', ['-c', 'user.email=a@b.c', '-c', 'user.name=t', 'commit', '-qm', 'x'], { cwd: dir }); |
| 113 | }; |
| 114 | |
| 115 | it('keeps a TRACKED excluded dir out of the index (git path) — the core fix', () => { |
| 116 | mk('app/main.ts'); |
no outgoing calls
no test coverage detected