open your package.json file, change the test under the script key:
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc",
"test": "NODE_ENV=test mocha --require ts-node/register 'test/repos/bot/*.ts' --bail --exit",
the previous test routed to test/**/*.ts directory, then I changed it into its subdirectory test/repos/bot/*.ts.
you can write npm test command, and only test file under test/repo/bot is tested.