Hey there, I am trying to run test using chrome-headless. Per the documentation I ran the following commands inside my project
npm install karma karma-cljs-test --save-dev
npm install -g karma-cli
npm install karma-chrome-launcher karma-firefox-launcher --save-dev
When I run my tests with lein doo chrome-headless test once I get the following error
;; ======================================================================
;; Testing with Chrome-headless:
'karma' is not recognized as an internal or external command,
operable program or batch file.
Subprocess failed
I checked to make sure all the modules exist and they do, they are located in ./npm-modules/. Moreover, I ran karma start inside the node_modules\.bin and it didn't throw an error. Any ideas?
Hey there, I am trying to run test using
chrome-headless. Per the documentation I ran the following commands inside my projectWhen I run my tests with
lein doo chrome-headless test onceI get the following errorI checked to make sure all the modules exist and they do, they are located in
./npm-modules/. Moreover, I rankarma startinside thenode_modules\.binand it didn't throw an error. Any ideas?