Reputation: 18781
I'm super new to all of these frameworks. I'm following tutorials that want me to use Karma for unit testing. According to NPMjs.org - karma The build is failing
Is this ENOENT error:
after running npm install -g karma
a result of this failing build? Or is it windows? Maybe a system enviroment variable error.
Are there prerequisite npm modules I must install before karma will properly install?
I'm uncertain on where to start debugging this problem.
Upvotes: 0
Views: 110
Reputation: 17038
Karma depends on ws
: this is this package that npm can't build.
It builds fine on Mac Os but doesn't on Windows: there's an issue on karma's GitHub referring to ws' github issues (here, here and there). I'd suggest you to take a look a the possible solutions, but unfortunately it doesn't look like this is a resolved matter.
Upvotes: 1