Skip to content

Commit

Permalink
Additional fix for #4444 to prevent errors on windows (#11423)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeapage committed Sep 28, 2022
1 parent 0c15eb6 commit 4adf6ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -17,6 +17,7 @@
- `[jest-mock]` Improve `spyOn` typings to handle optional properties ([#13247](https://github.com/facebook/jest/pull/13247))
- `[jest-snapshot]` Throw useful error when an array is passed as property matchers ([#13263](https://github.com/facebook/jest/pull/13263))
- `[jest-snapshot]` Prioritize parser used in the project ([#13323](https://github.com/facebook/jest/pull/13323))
- `[jest-transform]` Attempt to work around issues with atomic writes on Windows ([#11423](https://github.com/facebook/jest/pull/11423))

### Chore & Maintenance

Expand Down
6 changes: 6 additions & 0 deletions packages/jest-transform/src/ScriptTransformer.ts
Expand Up @@ -946,6 +946,12 @@ const readCacheFile = (cachePath: string): string | null => {
try {
fileData = fs.readFileSync(cachePath, 'utf8');
} catch (e: any) {
// on windows write-file-atomic is not atomic which can
// result in this error
if (e.code === 'ENOENT' && process.platform === 'win32') {
return null;
}

e.message = `jest: failed to read cache file: ${cachePath}\nFailure message: ${e.message}`;
removeFile(cachePath);
throw e;
Expand Down

0 comments on commit 4adf6ab

Please sign in to comment.