This commit is contained in:
Eason Goodale
2025-04-30 11:45:29 -07:00
parent 41ef530683
commit 5481bf0cb4
10 changed files with 174 additions and 41 deletions

View File

@@ -87,10 +87,10 @@ import { loadConfig } from "../src/utils/config.js";
let projectDir: string;
# beforeEach runs once per test; when the sandbox blocks mkdtemp under the OS
# tmp directory (e.g. GitHub Codespaces or certain container runtimes) fall
# back to creating the directory under the current working directory so the
# suite can still run.
// beforeEach runs once per test; when the sandbox blocks mkdtemp under the OS
// tmp directory (e.g. GitHub Codespaces or certain container runtimes) falls
// back to creating the directory under the current working directory so the
// suite can still run.
beforeEach(() => {
try {
projectDir = mkdtempSync(join(tmpdir(), "codex-proj-"));