You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The syntax for the npm test script is invalid on windows, and therefore cannot run. There needs to be a different means of referencing the jasmine-node package in
"test": "npm run eslint && npm run compile && node_modules/.bin/jasmine-node build/spec/tests"
since windows is not smart enough to look for the exe or script via the relative path. You will get an error that reads
'node_modules' is not recognized as an internal or external command
Wrapping the command in double quotes fixes the issue on windows.
"node_modules/.bin/jasmine-node" build/spec/tests
The text was updated successfully, but these errors were encountered:
The syntax for the
npm test
script is invalid on windows, and therefore cannot run. There needs to be a different means of referencing thejasmine-node
package in"test": "npm run eslint && npm run compile && node_modules/.bin/jasmine-node build/spec/tests"
since windows is not smart enough to look for the exe or script via the relative path. You will get an error that reads
'node_modules' is not recognized as an internal or external command
Wrapping the command in double quotes fixes the issue on windows.
"node_modules/.bin/jasmine-node" build/spec/tests
The text was updated successfully, but these errors were encountered: