-
Notifications
You must be signed in to change notification settings - Fork 1
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
Tests fails on windows #1
Comments
@trixlerjs Thanks for the inquiry, it's still in beta (will be off beta in v1), so bear with me. Any chance you could post all the 7 failed tests you see on Windows? Running on a Linux environment here, Windows hasn't been a priority.
Usually, but in some cases that is handled explicitly, and I must not have accounted for something. |
Hey. I noticed that for a few of the failing tests, there are issues with Unix vs Windows file path. Study this error: `Error: Expected spy 2 to have been called with [ 'Hello World1', '1', 'test|src|simple.js' ] but actual calls were [ 'Hello World1', '1', 'test\src\simple.js' ]. The 7 failing test is this Nutra private.getSystemConstants() should return a system constants object with default properties This tests fail because Again a file path issue. Failing tests:
|
If you add AppVeyor to the repo you will allways know if Windows fails |
as a fast patch-it-up, I added
made
... It's not pretty, and I might go around and do it the proper way - but I was able to get that sweet coverage working :D |
@moshmage I'm glad you got it working! The file paths have the With the fast patch you made, you might actually run into filename-too-long issues at some point (max 255-260 characters — if you are on Windows 10 you can change the limit). But I guess you are good for now :) |
Great work, except 7 tests fails on Windows.
Here is one error message:
Also for Windows, are the path "transpiled" from unix file path style to Windows file path style?
The text was updated successfully, but these errors were encountered: