I am using tape for testing. Running all tests is done with tape tests/*.js but istanbul test tests/*.js is only the equivalent of node tests/*.js which only runs the first test.
tape tests/*.js
istanbul test tests/*.js
node tests/*.js
Any suggestions?
Actually - nevermind. Seems like istanbul test tape -- tests/*.js works.
istanbul test tape -- tests/*.js
thanks ;)
Most helpful comment
Actually - nevermind. Seems like
istanbul test tape -- tests/*.jsworks.