Member
arnoldo.moen
How to kill nodemon process after running mocha tests?
gilbert
@arnoldo.moen
You can kill the nodemon process after running mocha tests by using the following steps:
1
ps aux | grep nodemon
kill <PID>
After running this command, the nodemon process should be successfully killed.