()
| 25 | // ── Helpers ──────────────────────────────────────────────────────────────── |
| 26 | |
| 27 | function makeTestHome(): string { |
| 28 | return mkdtempSync(join(tmpdir(), "gstack-memory-ingest-")); |
| 29 | } |
| 30 | |
| 31 | function runScript(args: string[], env: Record<string, string> = {}): { stdout: string; stderr: string; exitCode: number } { |
| 32 | const result = spawnSync("bun", [SCRIPT, ...args], { |
no outgoing calls
no test coverage detected