A standard unix bundle install under ~/.codegraph, running from it.
()
| 41 | |
| 42 | /** A standard unix bundle install under ~/.codegraph, running from it. */ |
| 43 | function bundlePresent(): Set<string> { |
| 44 | const root = `${STATE}/versions/v1.4.0`; |
| 45 | return new Set([ |
| 46 | STATE, |
| 47 | `${STATE}/versions`, |
| 48 | `${root}/node`, |
| 49 | `${root}/bin/codegraph`, |
| 50 | ]); |
| 51 | } |
| 52 | |
| 53 | describe('planBinaryRemoval', () => { |
| 54 | it('unix bundle at ~/.codegraph: removes artifacts only, never the state dir itself', () => { |