(cwd: string, home: string)
| 23 | } |
| 24 | |
| 25 | function runSlug(cwd: string, home: string) { |
| 26 | return spawnSync([SLUG_BIN], { |
| 27 | cwd, |
| 28 | env: { ...process.env, HOME: home }, |
| 29 | }); |
| 30 | } |
| 31 | |
| 32 | describe('gstack-slug cache-read sanitization', () => { |
| 33 | test('a poisoned cache file cannot inject shell metacharacters into output', () => { |
no test coverage detected