From fafe9f5469922d837850b4866142231228783a31 Mon Sep 17 00:00:00 2001 From: sebastien Date: Tue, 23 Dec 2025 16:27:34 +0100 Subject: [PATCH] test windows --- jest/snapshotPathNormalizer.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jest/snapshotPathNormalizer.ts b/jest/snapshotPathNormalizer.ts index b8a5ec33ab..32c7e96fcc 100644 --- a/jest/snapshotPathNormalizer.ts +++ b/jest/snapshotPathNormalizer.ts @@ -66,6 +66,9 @@ function normalizePaths(value: T): T { const cwd = process.cwd(); const cwdReal = getRealPath(cwd); + console.log('CWD:', cwd); + console.log('CWD Real:', cwdReal); + const tempDir = os.tmpdir(); const tempDirReal = getRealPath(tempDir); const homeDir = os.homedir();