-
Notifications
You must be signed in to change notification settings - Fork 933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix require path in test #1122
Fix require path in test #1122
Conversation
Hm, I don't experience this issue. Can you provide details of your setup like version for npm, node, operating system, etc., so that I might gain some insight? |
I don't suppose you're on Windows @gregnb (paths are case-insensitive on Windows but not on Linux/OS X)? There is no |
I can verify this, it doesn't work on codesandbox: https://codesandbox.io/s/github/gregnb/mui-datatables I also added a fix as part of this PR: #1087 Edit: Actually, I just tried again, and it currently works fine on Mac OS X (which is what I use). It was only on codesandbox where I noticed the issue (I was getting ready to put in the PR and include a link to codesandbox and it didn't work so I fixed the typo before submitting). |
FYI for the future, apart from Windows on NTFS/FAT, paths are generally case-sensitive on all filesystems and OS's in mainstream use today. It's expected that Windows doesn't care about casing; Linux/BSD/OS X does. |
Closes #1157. |
npm run dev
fails on current master due to invalid casing in filename. This fixes that.