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
- Check if module name is properly mapped and can be referenced by jest. If not add this on your existing jest configuration.
33
+
34
+
```javascipt
35
+
module.exports = {
36
+
...
37
+
moduleNameMapper: {
38
+
"^.*shared/(.*)": "<rootDir>/src/shared/$1",
39
+
},
40
+
}
41
+
```
42
+
43
+
- Check github folder names if its identical to you local folder names. Sometimes github never updates your folder names even if you rename it locally. If this happens rename your folders via github or use this command `git mv <source> <destination>` and commit changes.
0 commit comments