You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@
8
8
-`[jest-worker]`[**BREAKING**] Add functionality to call a `setup` method in the worker before the first call and a `teardown` method when ending the farm ([#7014](https://github.com/facebook/jest/pull/7014)).
9
9
-`[jest-config]`[**BREAKING**] Set default `notifyMode` to `failure-change` ([#7024](https://github.com/facebook/jest/pull/7024))
Copy file name to clipboardExpand all lines: packages/jest-haste-map/src/__tests__/__snapshots__/index.test.js.snap
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -3,25 +3,25 @@
3
3
exports[`HasteMap file system changes processing recovery from duplicate module IDs recovers when the most recent duplicate is fixed 1`] =`
4
4
"The name \`Pear\` was looked up in the Haste module map. It cannot be resolved, because there exists several different files, or packages, that provide a module for that particular name and platform. The platform is generic (no extension). You must delete or blacklist files until there remains only one of these:
5
5
6
-
* \`/project/fruits/blueberry.js\` (module)
7
-
* \`/project/fruits/pear.js\` (module)
6
+
* \`/project/fruits/Pear.js\` (module)
7
+
* \`/project/fruits/another/Pear.js\` (module)
8
8
"
9
9
`;
10
10
11
11
exports[`HasteMap file system changes processing recovery from duplicate module IDs recovers when the oldest version of the duplicates is fixed 1`] =`
12
12
"The name \`Pear\` was looked up in the Haste module map. It cannot be resolved, because there exists several different files, or packages, that provide a module for that particular name and platform. The platform is generic (no extension). You must delete or blacklist files until there remains only one of these:
13
13
14
-
* \`/project/fruits/blueberry.js\` (module)
15
-
* \`/project/fruits/pear.js\` (module)
14
+
* \`/project/fruits/Pear.js\` (module)
15
+
* \`/project/fruits/another/Pear.js\` (module)
16
16
"
17
17
`;
18
18
19
19
exports[`HasteMap throws on duplicate module ids if "throwOnModuleCollision" is set to true 1`] =`
0 commit comments