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();