feat(FN-2614): merge fusion/fn-2614 (auto-resolved)

- feat(FN-2614): complete Step 4 — configure vitest test isolation setup
- test(FN-2614): complete Step 3 — add isolation companion test
- feat(FN-2614): complete Step 2 — add test home isolation setup
This commit is contained in:
Fusion
2026-04-26 14:31:41 -07:00
committed by gsxdsm
parent b342e6b5d9
commit 861fb50df1
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { mkdtempSync } from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
const tempHome = mkdtempSync(join(tmpdir(), "fn-test-home-"));
process.env.HOME = tempHome;