I'm experimenting with using karma for various watch processes.
To start, I globally installed karma by running:
npm i -g karma
After that, I executed karma start karma.conf.js
and it ran successfully.
Now I want to install karma
locally within the project by running
npm install karma
The installation seems to have completed without issues as I can see the karma folder in node_modules
, but it looks like node_modules/karma/bin/karma
is not an executable file.
What would be the correct way to run karma after installing it locally?