Fix test dir directory to not track files

This commit is contained in:
Konstantin Wohlwend 2026-06-22 23:47:00 -07:00
parent a93f2561d8
commit 501e8571e6

View File

@ -40,7 +40,7 @@ const TEST_FILE_DIR = dirname(fileURLToPath(import.meta.url));
let tempDir: string | undefined;
function createTempDir(): string {
tempDir ??= mkdtempSync(join(TEST_FILE_DIR, ".stack-rde-config-test-"));
tempDir ??= mkdtempSync(join(TEST_FILE_DIR, ".stack-rde-config-test.untracked.dir-"));
return tempDir;
}