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
exports[`HasteMap builds a haste map on a fresh cache with SHA-1s uses watchman: false 1`] =`
4
+
Object {
5
+
"/fruits/Banana.js": Array [
6
+
"Banana",
7
+
32,
8
+
1,
9
+
Array [
10
+
"Strawberry",
11
+
],
12
+
"5ed33593647e9ed632d8133a91b2dbef416a5d77",
13
+
],
14
+
"/fruits/Pear.js": Array [
15
+
"Pear",
16
+
32,
17
+
1,
18
+
Array [
19
+
"Banana",
20
+
"Strawberry",
21
+
],
22
+
"210aa3531d1646b6469d88d80168417f8dd08c7f",
23
+
],
24
+
"/fruits/Strawberry.js": Array [
25
+
"Strawberry",
26
+
32,
27
+
1,
28
+
Array [],
29
+
"65a371cc1a610b7cad68798d6d4ff5a941f837b8",
30
+
],
31
+
"/fruits/__mocks__/Pear.js": Array [
32
+
"",
33
+
32,
34
+
1,
35
+
Array [
36
+
"Melon",
37
+
],
38
+
"e0753bafe7b1f7a460fe8af9925f15e79960bb20",
39
+
],
40
+
"/vegetables/Melon.js": Array [
41
+
"Melon",
42
+
32,
43
+
1,
44
+
Array [],
45
+
"ff9c3f399d8f8bc7e67f99d065efff6570ce9347",
46
+
],
47
+
}
48
+
`;
49
+
50
+
exports[`HasteMap builds a haste map on a fresh cache with SHA-1s uses watchman: true 1`] =`
51
+
Object {
52
+
"/fruits/Banana.js": Array [
53
+
"Banana",
54
+
32,
55
+
1,
56
+
Array [
57
+
"Strawberry",
58
+
],
59
+
"5ed33593647e9ed632d8133a91b2dbef416a5d77",
60
+
],
61
+
"/fruits/Pear.js": Array [
62
+
"Pear",
63
+
32,
64
+
1,
65
+
Array [
66
+
"Banana",
67
+
"Strawberry",
68
+
],
69
+
"210aa3531d1646b6469d88d80168417f8dd08c7f",
70
+
],
71
+
"/fruits/Strawberry.js": Array [
72
+
"Strawberry",
73
+
32,
74
+
1,
75
+
Array [],
76
+
"65a371cc1a610b7cad68798d6d4ff5a941f837b8",
77
+
],
78
+
"/fruits/__mocks__/Pear.js": Array [
79
+
"",
80
+
32,
81
+
1,
82
+
Array [
83
+
"Melon",
84
+
],
85
+
"e0753bafe7b1f7a460fe8af9925f15e79960bb20",
86
+
],
87
+
"/vegetables/Melon.js": Array [
88
+
"Melon",
89
+
32,
90
+
1,
91
+
Array [],
92
+
"ff9c3f399d8f8bc7e67f99d065efff6570ce9347",
93
+
],
94
+
}
95
+
`;
96
+
3
97
exports[`HasteMap file system changes processing recovery from duplicate module IDs recovers when the most recent duplicate is fixed 1`] =`
4
98
"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
99
6
-
* \`/fruits/blueberry.js\` (module)
7
-
* \`/fruits/pear.js\` (module)
100
+
* \`/fruits/Pear.js\` (module)
101
+
* \`/fruits/another/Pear.js\` (module)
8
102
"
9
103
`;
10
104
11
105
exports[`HasteMap file system changes processing recovery from duplicate module IDs recovers when the oldest version of the duplicates is fixed 1`] =`
12
106
"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
107
14
-
* \`/fruits/blueberry.js\` (module)
15
-
* \`/fruits/pear.js\` (module)
108
+
* \`/fruits/Pear.js\` (module)
109
+
* \`/fruits/another/Pear.js\` (module)
16
110
"
17
111
`;
18
112
19
113
exports[`HasteMap throws on duplicate module ids if "throwOnModuleCollision" is set to true 1`] =`
0 commit comments