test: remove unnecessary changes introduced to address EPERM failures

This commit is contained in:
Jarrod Whelan
2026-02-10 10:13:19 -08:00
parent 785c60ae4a
commit 53e1fa13ea
2 changed files with 3 additions and 6 deletions

View File

@@ -6,7 +6,6 @@
import * as fs from 'node:fs';
import * as path from 'node:path';
import * as os from 'node:os';
import {
beforeAll,
afterAll,
@@ -30,7 +29,7 @@ describe('ExtensionManager theme loading', () => {
beforeAll(async () => {
tempHomeDir = await fs.promises.mkdtemp(
path.join(os.tmpdir(), 'gemini-cli-test-'),
path.join(fs.realpathSync('/tmp'), 'gemini-cli-test-'),
);
});