I use Mocha to test my JavaScript stuff. My test file contains 5 tests. Is that possible to run a specific test (or set of tests) rather than all the tests in the file?
Looking into https://mochajs.org/#usage we see that simply use
mocha test/myfile
will work. You can omit the '.js' at the end.