I'm assuming this was related to the Windows tests failing. Looks like it was because git was automatically converting \n to \r\n newlines for text files. Because the test files were text files they were affected.
Adding in static test files and adding a .gitattributes file appears to have solved this
Thanks for looking into this! The Windows tests have been bothering us for some time, but you were able to fix them 🎉 I will have a thorough look at your PR soon.
I'm assuming this was related to the Windows tests failing. Looks like it was because git was automatically converting
\n
to\r\n
newlines for text files. Because the test files were text files they were affected.Adding in static test files and adding a
.gitattributes
file appears to have solved this