(args: string[], tmpHome: string)
| 47 | } |
| 48 | |
| 49 | function runConfig(args: string[], tmpHome: string) { |
| 50 | return spawnSync(CONFIG_BIN, args, { |
| 51 | encoding: 'utf-8', |
| 52 | env: { ...process.env, HOME: tmpHome, GSTACK_HOME: tmpHome }, |
| 53 | timeout: 5000, |
| 54 | }); |
| 55 | } |
| 56 | |
| 57 | describe('docs ↔ gstack-config key drift guard', () => { |
| 58 | test('docs/ references at least one config key (smoke)', () => { |
no test coverage detected