How to make npm test working? #306
-
Hello, I wanted to reproduce an issue I have in the playground, but I'm not able to make tests working.
it fails like this:
Is there anything else, that I need to set up? A specific version of node.js / npm or something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Nah, that should work. And it does at least on MacOS and Linux. Perhaps some of the rules used in As I don't have a local Windows machine to test on, I wonder if it'd be possible to use GitHub Actions to run the test suite also in a Windows environment? |
Beta Was this translation helpful? Give feedback.
Nah, that should work. And it does at least on MacOS and Linux. Perhaps some of the rules used in
config/jest.config.js
aren't matching because of the\
directory separators that Windows uses instead of/
? This seems like a pretty similar case: jestjs/jest#7914.As I don't have a local Windows machine to test on, I wonder if it'd be possible to use GitHub Actions to run the test suite also in a Windows environment?